diff options
Diffstat (limited to 'slackware64-current/source/n/rp-pppoe')
4 files changed, 102 insertions, 0 deletions
diff --git a/slackware64-current/source/n/rp-pppoe/doinst.sh.gz b/slackware64-current/source/n/rp-pppoe/doinst.sh.gz new file mode 100644 index 000000000..ff713cc15 --- /dev/null +++ b/slackware64-current/source/n/rp-pppoe/doinst.sh.gz @@ -0,0 +1 @@ +513098f675a03e36504c1776c06d8f5eb2c8c90b diff --git a/slackware64-current/source/n/rp-pppoe/rp-pppoe-3.10.tar.gz b/slackware64-current/source/n/rp-pppoe/rp-pppoe-3.10.tar.gz new file mode 100644 index 000000000..61a98e83b --- /dev/null +++ b/slackware64-current/source/n/rp-pppoe/rp-pppoe-3.10.tar.gz @@ -0,0 +1 @@ +183372b84c1bb8e22d1bd8be05a280d948ae41f9 diff --git a/slackware64-current/source/n/rp-pppoe/rp-pppoe.SlackBuild b/slackware64-current/source/n/rp-pppoe/rp-pppoe.SlackBuild new file mode 100755 index 000000000..7dfa839c8 --- /dev/null +++ b/slackware64-current/source/n/rp-pppoe/rp-pppoe.SlackBuild @@ -0,0 +1,81 @@ +#!/bin/sh + +# Copyright 2008, 2009 Patrick J. Volkerding, Sebeka, MN, USA +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +VERSION=3.10 +ARCH=${ARCH:-x86_64} +BUILD=${BUILD:-1} + +NUMJOBS=${NUMJOBS:-" -j7 "} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" +elif [ "$ARCH" = "s390" ]; then + SLKCFLAGS="-O2" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" +fi + +CWD=$(pwd) +TMP=${TMP:-/tmp} +PKG=$TMP/package-rp-pppoe + +rm -rf $PKG +mkdir -p $TMP $PKG +cd $TMP +rm -rf rp-pppoe-$VERSION +tar xvf $CWD/rp-pppoe-$VERSION.tar.gz || exit 1 +cd rp-pppoe-$VERSION/src || exit 1 +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +./configure \ + --enable-plugin=/ppp-2.4.4 \ + --prefix=/usr \ + --mandir=/usr/man \ + --build=$ARCH-slackware-linux + +make $NUMJOBS || make || exit 1 +make install docdir=/usr/doc/rp-pppoe-$VERSION DESTDIR=$PKG install || exit 1 + +find $PKG | xargs file | grep -e "executable" -e "shared object" \ + | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null + +( cd $PKG/etc/ppp + for config in firewall-masq firewall-standalone pppoe-server-options pppoe.conf ; do + mv $config ${config}.new + done +) + +gzip -9 $PKG/usr/man/man?/*.? + +mkdir -p $PKG/install +zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh +cat $CWD/slack-desc > $PKG/install/slack-desc + +cd $PKG +/sbin/makepkg -l y -c n $TMP/rp-pppoe-$VERSION-$ARCH-$BUILD.txz + diff --git a/slackware64-current/source/n/rp-pppoe/slack-desc b/slackware64-current/source/n/rp-pppoe/slack-desc new file mode 100644 index 000000000..8aed9d0c4 --- /dev/null +++ b/slackware64-current/source/n/rp-pppoe/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. Line +# up the first '|' above the ':' following the base package name, and the '|' on +# the right side marks the last column you can put a character in. You must make +# exactly 11 lines for the formatting to be correct. It's also customary to +# leave one space after the ':'. + + |-----handy-ruler------------------------------------------------------| +rp-pppoe: rp-pppoe (Roaring Penguin PPPoE client) +rp-pppoe: +rp-pppoe: PPPoE (Point-to-Point Protocol over Ethernet) is a protocol used by +rp-pppoe: many ADSL Internet Service Providers. Roaring Penguin has a free +rp-pppoe: client for Linux systems to connect to PPPoE service providers. +rp-pppoe: +rp-pppoe: The client is a user-mode program and does not require any kernel +rp-pppoe: modifications. It is fully compliant with RFC 2516, the official +rp-pppoe: PPPoE specification. +rp-pppoe: +rp-pppoe: |