summaryrefslogtreecommitdiffstats
path: root/source.local/n/ppp
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2013-03-22 16:47:17 -0700
committer Eric Hameleers <alien@slackware.com>2013-03-22 16:47:17 -0700
commit69dd99f961988fa15da8d7f0d63b62f3385419c3 (patch)
treed57eb3e85e1d08e7815787de26946ee42c398b66 /source.local/n/ppp
downloadalienarm-69dd99f961988fa15da8d7f0d63b62f3385419c3.tar.gz
alienarm-69dd99f961988fa15da8d7f0d63b62f3385419c3.tar.xz
Initial commit of a Slackware cross-arch bootstrap framework.
Diffstat (limited to 'source.local/n/ppp')
-rw-r--r--source.local/n/ppp/doinst.sh.gzbin0 -> 324 bytes
-rw-r--r--source.local/n/ppp/options.new.gzbin0 -> 3620 bytes
-rw-r--r--source.local/n/ppp/ppp-2.4.5.pppol2tp.patch.gzbin0 -> 510 bytes
-rwxr-xr-xsource.local/n/ppp/ppp.SlackBuild178
-rw-r--r--source.local/n/ppp/ppp.slack.diff.gzbin0 -> 401 bytes
-rw-r--r--source.local/n/ppp/pppsetup-1.98.backupfiles.diff.gzbin0 -> 348 bytes
-rw-r--r--source.local/n/ppp/pppsetup-1.98.moredevs.diff.gzbin0 -> 1303 bytes
-rw-r--r--source.local/n/ppp/pppsetup-1.98.pppoff.diff.gzbin0 -> 270 bytes
-rw-r--r--source.local/n/ppp/pppsetup-1.98.slack.diff.gzbin0 -> 11656 bytes
-rw-r--r--source.local/n/ppp/radius.msdict.gzbin0 -> 812 bytes
-rw-r--r--source.local/n/ppp/realms.gzbin0 -> 372 bytes
-rw-r--r--source.local/n/ppp/servers.gzbin0 -> 129 bytes
-rw-r--r--source.local/n/ppp/slack-desc19
13 files changed, 197 insertions, 0 deletions
diff --git a/source.local/n/ppp/doinst.sh.gz b/source.local/n/ppp/doinst.sh.gz
new file mode 100644
index 0000000..4d81025
--- /dev/null
+++ b/source.local/n/ppp/doinst.sh.gz
Binary files differ
diff --git a/source.local/n/ppp/options.new.gz b/source.local/n/ppp/options.new.gz
new file mode 100644
index 0000000..dcd4266
--- /dev/null
+++ b/source.local/n/ppp/options.new.gz
Binary files differ
diff --git a/source.local/n/ppp/ppp-2.4.5.pppol2tp.patch.gz b/source.local/n/ppp/ppp-2.4.5.pppol2tp.patch.gz
new file mode 100644
index 0000000..fefc1e1
--- /dev/null
+++ b/source.local/n/ppp/ppp-2.4.5.pppol2tp.patch.gz
Binary files differ
diff --git a/source.local/n/ppp/ppp.SlackBuild b/source.local/n/ppp/ppp.SlackBuild
new file mode 100755
index 0000000..4ce79a0
--- /dev/null
+++ b/source.local/n/ppp/ppp.SlackBuild
@@ -0,0 +1,178 @@
+#!/bin/sh
+
+# Copyright 2008, 2009, 2010 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.
+
+# Modified 2012 by Eric Hameleers <alien at slackware.com> for ARM port.
+
+
+VERSION=2.4.5
+RADVER=0.3.2
+PPPVER=1.98
+BUILD=${BUILD:-1}
+
+NUMJOBS=${NUMJOBS:-" -j7 "}
+
+# Automatically determine the architecture we're building on:
+MARCH=$( uname -m )
+if [ -z "$ARCH" ]; then
+ case "$MARCH" in
+ i?86) export ARCH=i486 ;;
+ armv7hl) export ARCH=$MARCH ;;
+ arm*) export ARCH=arm ;;
+ # Unless $ARCH is already set, use uname -m for all other archs:
+ *) export ARCH=$MARCH ;;
+ esac
+fi
+
+if [ "$ARCH" = "x86_64" ]; then
+ LIBDIRSUFFIX="64"
+else
+ LIBDIRSUFFIX=""
+fi
+
+CWD=$(pwd)
+TMP=${TMP:-/tmp}
+PKG=$TMP/package-ppp
+
+rm -rf $PKG
+mkdir -p $TMP $PKG
+
+echo "+============+"
+echo "| ppp-$VERSION |"
+echo "+============+"
+cd $TMP
+rm -rf ppp-$VERSION
+tar xvf $CWD/ppp-$VERSION.tar.bz2 || exit 1
+cd ppp-$VERSION || 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 {} \;
+
+# Compensate for a change in kernel API:
+zcat $CWD/ppp-2.4.5.pppol2tp.patch.gz | patch -p1 --verbose || exit 1
+
+# Slack-specifics:
+zcat $CWD/ppp.slack.diff.gz | patch -p1 --verbose --backup --suffix=.orig || exit
+sed -i -e "s#lib/pppd#lib${LIBDIRSUFFIX}/pppd#g" $(grep -lr 'lib/pppd' *)
+
+./configure \
+ --prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX}
+make $NUMJOBS || make || exit 1
+make install DESTDIR=$PKG/usr
+
+mv $PKG/usr/share/man $PKG/usr
+rmdir $PKG/usr/share
+
+# Install PPP config files:
+mkdir -p $PKG/etc/ppp
+cp -a etc.ppp/* $PKG/etc/ppp
+chmod 600 $PKG/etc/ppp/*secrets
+( cd $PKG/etc/ppp
+ mv chap-secrets chap-secrets.new
+ mv options options.new
+ mv pap-secrets pap-secrets.new
+)
+zcat $CWD/options.new.gz > $PKG/etc/ppp/options.new
+
+# Fix what seems like an insecure default setting.
+# Feel free to "chmod 4750 pppoatm.so rp-pppoe.so" at your own risk.
+# Since they are only runnable by group root, the risk really isn't much...
+chmod 755 $PKG/usr/lib${LIBDIRSUFFIX}/pppd/*/*.so
+
+mkdir -p $PKG/usr/doc/ppp-$VERSION
+cp -a \
+ FAQ PLUGINS README* SETUP scripts \
+ $PKG/usr/doc/ppp-$VERSION
+
+echo "+====================+"
+echo "| radiusclient-$RADVER |"
+echo "+====================+"
+cd $TMP
+rm -rf radiusclient-$RADVER
+tar xf $CWD/radiusclient-$RADVER.tar.bz2 || exit 1
+cd radiusclient-$RADVER || exit 1
+chown -R root:root .
+#cp /usr/share/libtool/config.{guess,sub} . # libtool-1.x
+cp /usr/share/libtool/config/config.{guess,sub} . # libtool-2.x
+./configure \
+ --prefix=/usr \
+ --libdir=/usr/lib${LIBDIRSUFFIX} \
+ --sysconfdir=/etc
+make $NUMJOBS || make || exit 1
+make install DESTDIR=$PKG || exit 1
+zcat $CWD/radius.msdict.gz > $PKG/etc/radiusclient/dictionary.microsoft
+zcat $CWD/realms.gz > $PKG/etc/radiusclient/realms
+zcat $CWD/servers.gz > $PKG/etc/radiusclient/servers
+( cd $PKG/etc/radiusclient
+ chmod 600 realms servers
+ mv issue issue.new
+ mv radiusclient.conf radiusclient.conf.new
+ mv realms realms.new
+ mv servers servers.new
+)
+mkdir -p $PKG/usr/doc/radiusclient-$RADVER
+cp -a \
+ BUGS CHANGES COPYRIGHT README README.radexample doc/instop.html \
+ $PKG/usr/doc/radiusclient-$RADVER
+chmod 644 $PKG/usr/doc/radiusclient-$RADVER/*
+
+echo "+===============+"
+echo "| pppsetup-$PPPVER |"
+echo "+===============+"
+cd $TMP
+rm -rf pppsetup-$PPPVER
+tar xvf $CWD/pppsetup-$PPPVER.tar.gz || exit 1
+cd pppsetup-$PPPVER || exit 1
+chown -R root:root .
+zcat $CWD/pppsetup-1.98.slack.diff.gz | patch -p1 --backup || exit
+zcat $CWD/pppsetup-1.98.pppoff.diff.gz | patch -p0 --backup || exit
+zcat $CWD/pppsetup-1.98.moredevs.diff.gz | patch -p1 --backup || exit
+zcat $CWD/pppsetup-1.98.backupfiles.diff.gz | patch -p1 --backup || exit
+chmod 755 ppp-off pppsetup
+cp -a ppp-off pppsetup $PKG/usr/sbin
+mkdir -p $PKG/usr/doc/pppsetup
+cp -a \
+ README.pppsetup ppp-compile.txt pppsetup-$PPPVER.README pppsetup-$PPPVER.lsm \
+ $PKG/usr/doc/pppsetup
+
+( cd $PKG
+ find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
+ find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
+ find . -name "*.a" | xargs file | grep "ar archive" | cut -f 1 -d : | xargs strip -g 2> /dev/null
+)
+
+chmod 755 $PKG/usr/sbin/*
+
+gzip -9 $PKG/usr/man/man?/*.?
+chmod 644 $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
+
+# Build the package:
+cd $PKG
+/sbin/makepkg -l y -c n $TMP/ppp-$VERSION-$ARCH-$BUILD.txz
+
diff --git a/source.local/n/ppp/ppp.slack.diff.gz b/source.local/n/ppp/ppp.slack.diff.gz
new file mode 100644
index 0000000..d3ae9ba
--- /dev/null
+++ b/source.local/n/ppp/ppp.slack.diff.gz
Binary files differ
diff --git a/source.local/n/ppp/pppsetup-1.98.backupfiles.diff.gz b/source.local/n/ppp/pppsetup-1.98.backupfiles.diff.gz
new file mode 100644
index 0000000..39aefba
--- /dev/null
+++ b/source.local/n/ppp/pppsetup-1.98.backupfiles.diff.gz
Binary files differ
diff --git a/source.local/n/ppp/pppsetup-1.98.moredevs.diff.gz b/source.local/n/ppp/pppsetup-1.98.moredevs.diff.gz
new file mode 100644
index 0000000..deae855
--- /dev/null
+++ b/source.local/n/ppp/pppsetup-1.98.moredevs.diff.gz
Binary files differ
diff --git a/source.local/n/ppp/pppsetup-1.98.pppoff.diff.gz b/source.local/n/ppp/pppsetup-1.98.pppoff.diff.gz
new file mode 100644
index 0000000..5bb9d18
--- /dev/null
+++ b/source.local/n/ppp/pppsetup-1.98.pppoff.diff.gz
Binary files differ
diff --git a/source.local/n/ppp/pppsetup-1.98.slack.diff.gz b/source.local/n/ppp/pppsetup-1.98.slack.diff.gz
new file mode 100644
index 0000000..01e9828
--- /dev/null
+++ b/source.local/n/ppp/pppsetup-1.98.slack.diff.gz
Binary files differ
diff --git a/source.local/n/ppp/radius.msdict.gz b/source.local/n/ppp/radius.msdict.gz
new file mode 100644
index 0000000..03cc54d
--- /dev/null
+++ b/source.local/n/ppp/radius.msdict.gz
Binary files differ
diff --git a/source.local/n/ppp/realms.gz b/source.local/n/ppp/realms.gz
new file mode 100644
index 0000000..e9d6a8e
--- /dev/null
+++ b/source.local/n/ppp/realms.gz
Binary files differ
diff --git a/source.local/n/ppp/servers.gz b/source.local/n/ppp/servers.gz
new file mode 100644
index 0000000..0605782
--- /dev/null
+++ b/source.local/n/ppp/servers.gz
Binary files differ
diff --git a/source.local/n/ppp/slack-desc b/source.local/n/ppp/slack-desc
new file mode 100644
index 0000000..ddf6f37
--- /dev/null
+++ b/source.local/n/ppp/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------------------------------------------------------|
+ppp: ppp (Point-to-Point Protocol)
+ppp:
+ppp: The Point-to-Point Protocol (PPP) provides a method for transmitting
+ppp: data over serial links. It's commonly used for connecting to the
+ppp: Internet using a modem. This package includes the PPP daemon (pppd),
+ppp: which negotiates with the peer to establish the link and sets up the
+ppp: ppp network interface, and pppsetup, an easy-to-use utility for
+ppp: setting up your PPP daemon.
+ppp:
+ppp:
+ppp: