summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2006-02-06 21:47:09 +0000
committerAlin Năstac <mrness@gentoo.org>2006-02-06 21:47:09 +0000
commit8814bfaede4d51b0a120f0f7e3be6312f15d511a (patch)
treec8df59e4b1338e72ddcc84810dee7352a60c0b57 /net-dialup/rp-pppoe/files
parentMark 2.12.1 stable on ia64 (diff)
downloadgentoo-2-8814bfaede4d51b0a120f0f7e3be6312f15d511a.tar.gz
gentoo-2-8814bfaede4d51b0a120f0f7e3be6312f15d511a.tar.bz2
gentoo-2-8814bfaede4d51b0a120f0f7e3be6312f15d511a.zip
Version bump (#121836).
(Portage version: 2.0.54)
Diffstat (limited to 'net-dialup/rp-pppoe/files')
-rw-r--r--net-dialup/rp-pppoe/files/digest-rp-pppoe-3.72
-rw-r--r--net-dialup/rp-pppoe/files/rp-pppoe-3.7-gentoo-netscripts.patch150
-rw-r--r--net-dialup/rp-pppoe/files/rp-pppoe-3.7-on-demand-with-plugin.patch24
-rw-r--r--net-dialup/rp-pppoe/files/rp-pppoe-3.7-plugin-options.patch12
-rw-r--r--net-dialup/rp-pppoe/files/rp-pppoe-3.7-username-charset.patch58
5 files changed, 246 insertions, 0 deletions
diff --git a/net-dialup/rp-pppoe/files/digest-rp-pppoe-3.7 b/net-dialup/rp-pppoe/files/digest-rp-pppoe-3.7
new file mode 100644
index 000000000000..97f20f299748
--- /dev/null
+++ b/net-dialup/rp-pppoe/files/digest-rp-pppoe-3.7
@@ -0,0 +1,2 @@
+MD5 848f6c3cafeb6074ffeb293c3af79b7c ppp-2.4.3.tar.gz 688092
+MD5 32c34455ccdfd9610304479e1beac3ff rp-pppoe-3.7.tar.gz 212326
diff --git a/net-dialup/rp-pppoe/files/rp-pppoe-3.7-gentoo-netscripts.patch b/net-dialup/rp-pppoe/files/rp-pppoe-3.7-gentoo-netscripts.patch
new file mode 100644
index 000000000000..d64e21edbed8
--- /dev/null
+++ b/net-dialup/rp-pppoe/files/rp-pppoe-3.7-gentoo-netscripts.patch
@@ -0,0 +1,150 @@
+diff -Nur rp-pppoe-3.7.orig/configs/pppoe.conf rp-pppoe-3.7/configs/pppoe.conf
+--- rp-pppoe-3.7.orig/configs/pppoe.conf 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/configs/pppoe.conf 2006-02-06 23:20:57.667106750 +0200
+@@ -21,6 +21,9 @@
+ # When you configure a variable, DO NOT leave spaces around the "=" sign.
+
+ # Ethernet card connected to DSL modem
++#
++# NB: Gentoo overrides ETH when pppoe-start is called from the
++# networking scripts. This setting has no effect in that case.
+ ETH=eth1
+
+ # PPPoE user name. You may have to supply "@provider.com" Sympatico
+@@ -86,8 +89,10 @@
+ # $PIDFILE contains PID of pppoe-connect script
+ # $PIDFILE.pppoe contains PID of pppoe process
+ # $PIDFILE.pppd contains PID of pppd process
+-CF_BASE=`basename $CONFIG`
+-PIDFILE="/var/run/$CF_BASE-pppoe.pid"
++#
++# NB: Gentoo overrides PIDFILE when pppoe-start is run from the
++# networking scripts. This setting has no effect in that case.
++PIDFILE="/var/run/rp-pppoe.pid"
+
+ # Do you want to use synchronous PPP? "yes" or "no". "yes" is much
+ # easier on CPU usage, but may not work for you. It is safer to use
+diff -Nur rp-pppoe-3.7.orig/scripts/pppoe-connect.in rp-pppoe-3.7/scripts/pppoe-connect.in
+--- rp-pppoe-3.7.orig/scripts/pppoe-connect.in 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/scripts/pppoe-connect.in 2006-02-06 23:20:57.667106750 +0200
+@@ -62,12 +62,17 @@
+ ;;
+ esac
+
+-if test ! -f "$CONFIG" -o ! -r "$CONFIG" ; then
++# In Gentoo, CONFIG is a named pipe when pppoe is started by the
++# network scripts. Testing -r is allowed; testing -f is not.
++if test ! -r "$CONFIG" ; then
+ echo "$0: Cannot read configuration file '$CONFIG'" >& 2
+ exit 1
+ fi
+-export CONFIG
+-. $CONFIG
++
++# Read the named pipe (/dev/fd/foo) into a variable so we can use it
++# again later (since reading once from the pipe will exhaust it)
++CONFREAD=$(<$CONFIG)
++eval "$CONFREAD"
+
+ PPPOE_PIDFILE="$PIDFILE.pppoe"
+ PPPD_PIDFILE="$PIDFILE.pppd"
+diff -Nur rp-pppoe-3.7.orig/scripts/pppoe-start.in rp-pppoe-3.7/scripts/pppoe-start.in
+--- rp-pppoe-3.7.orig/scripts/pppoe-start.in 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/scripts/pppoe-start.in 2006-02-06 23:20:57.667106750 +0200
+@@ -1,4 +1,4 @@
+-#!/bin/sh
++#!/bin/bash
+ # @configure_input@
+ #***********************************************************************
+ #
+@@ -113,12 +113,17 @@
+ ;;
+ esac
+
+-if [ ! -f "$CONFIG" -o ! -r "$CONFIG" ] ; then
++# In Gentoo, CONFIG is a named pipe when pppoe is started by the
++# network scripts. Testing -r is allowed; testing -f is not.
++if [ ! -r "$CONFIG" ] ; then
+ $ECHO "$ME: Cannot read configuration file '$CONFIG'" >& 2
+ exit 1
+ fi
+-export CONFIG
+-. $CONFIG
++
++# Read the named pipe (/dev/fd/foo) into a variable so we can use it
++# again later (since reading once from the pipe will exhaust it)
++CONFREAD=$(<$CONFIG)
++eval "$CONFREAD"
+
+ # Check for command-line overriding of ETH and USER
+ case "$#" in
+@@ -145,11 +150,11 @@
+
+ # Start the connection in the background unless we're debugging
+ if [ "$DEBUG" != "" ] ; then
+- $CONNECT "$@"
++ $CONNECT <(echo "$CONFREAD")
+ exit 0
+ fi
+
+-$CONNECT "$@" > /dev/null 2>&1 &
++$CONNECT <(echo "$CONFREAD") >/dev/null 2>&1 &
+ CONNECT_PID=$!
+
+ if [ "$CONNECT_TIMEOUT" = "" -o "$CONNECT_TIMEOUT" = 0 ] ; then
+@@ -164,7 +169,7 @@
+ # Monitor connection
+ TIME=0
+ while [ true ] ; do
+- @sbindir@/pppoe-status $CONFIG > /dev/null 2>&1
++ @sbindir@/pppoe-status <(echo "$CONFREAD") >/dev/null 2>&1
+
+ # Looks like the interface came up
+ if [ $? = 0 ] ; then
+diff -Nur rp-pppoe-3.7.orig/scripts/pppoe-status rp-pppoe-3.7/scripts/pppoe-status
+--- rp-pppoe-3.7.orig/scripts/pppoe-status 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/scripts/pppoe-status 2006-02-06 23:20:57.667106750 +0200
+@@ -28,12 +28,17 @@
+ ;;
+ esac
+
+-if [ ! -f "$CONFIG" -o ! -r "$CONFIG" ] ; then
++# In Gentoo, CONFIG is a named pipe when pppoe is started by the
++# network scripts. Testing -r is allowed; testing -f is not.
++if [ ! -r "$CONFIG" ] ; then
+ echo "$0: Cannot read configuration file '$CONFIG'" >& 2
+ exit 1
+ fi
+
+-. $CONFIG
++# Read the named pipe (/dev/fd/foo) into a variable so we can use it
++# again later (since reading once from the pipe will exhaust it)
++CONFREAD=$(<$CONFIG)
++eval "$CONFREAD"
+
+ PPPOE_PIDFILE="$PIDFILE.pppoe"
+ PPPD_PIDFILE="$PIDFILE.pppd"
+diff -Nur rp-pppoe-3.7.orig/scripts/pppoe-stop.in rp-pppoe-3.7/scripts/pppoe-stop.in
+--- rp-pppoe-3.7.orig/scripts/pppoe-stop.in 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/scripts/pppoe-stop.in 2006-02-06 23:20:57.671107000 +0200
+@@ -31,12 +31,17 @@
+ CONFIG=/etc/ppp/pppoe.conf
+ fi
+
+-if [ ! -f "$CONFIG" -o ! -r "$CONFIG" ] ; then
++# In Gentoo, CONFIG is a named pipe when pppoe is started by the
++# network scripts. Testing -r is allowed; testing -f is not.
++if [ ! -r "$CONFIG" ] ; then
+ echo "$ME: Cannot read configuration file '$CONFIG'" >& 2
+ exit 1
+ fi
+-export CONFIG
+-. $CONFIG
++
++# Read the named pipe (/dev/fd/foo) into a variable so we can use it
++# again later (since reading once from the pipe will exhaust it)
++CONFREAD=$(<$CONFIG)
++eval "$CONFREAD"
+
+ PPPOE_PIDFILE="$PIDFILE.pppoe"
+ PPPD_PIDFILE="$PIDFILE.pppd"
diff --git a/net-dialup/rp-pppoe/files/rp-pppoe-3.7-on-demand-with-plugin.patch b/net-dialup/rp-pppoe/files/rp-pppoe-3.7-on-demand-with-plugin.patch
new file mode 100644
index 000000000000..648ab0226243
--- /dev/null
+++ b/net-dialup/rp-pppoe/files/rp-pppoe-3.7-on-demand-with-plugin.patch
@@ -0,0 +1,24 @@
+diff -Nur rp-pppoe-3.7.orig/configs/pppoe.conf rp-pppoe-3.7/configs/pppoe.conf
+--- rp-pppoe-3.7.orig/configs/pppoe.conf 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/configs/pppoe.conf 2006-02-06 23:26:51.809239250 +0200
+@@ -115,7 +115,7 @@
+ FIREWALL=NONE
+
+ # Linux kernel-mode plugin for pppd. If you want to try the kernel-mode
+-# plugin, use LINUX_PLUGIN=/etc/ppp/plugins/rp-pppoe.so
++# plugin, use LINUX_PLUGIN=rp-pppoe.so
+ LINUX_PLUGIN=
+
+ # Any extra arguments to pass to pppoe. Normally, use a blank string
+diff -Nur rp-pppoe-3.7.orig/scripts/pppoe-connect.in rp-pppoe-3.7/scripts/pppoe-connect.in
+--- rp-pppoe-3.7.orig/scripts/pppoe-connect.in 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/scripts/pppoe-connect.in 2006-02-06 23:26:51.809239250 +0200
+@@ -295,7 +295,7 @@
+ $SETSID $OVERRIDE_PPPD_COMMAND &
+ echo "$!" > $PPPD_PIDFILE
+ elif test "$LINUX_PLUGIN" != "" ; then
+- $SETSID $PPPD $PPP_STD_OPTIONS $DEMAND &
++ $SETSID $PPPD $DEMAND $PPP_STD_OPTIONS &
+ echo "$!" > $PPPD_PIDFILE
+ else
+ $SETSID $PPPD pty "$PPPOE_CMD" \
diff --git a/net-dialup/rp-pppoe/files/rp-pppoe-3.7-plugin-options.patch b/net-dialup/rp-pppoe/files/rp-pppoe-3.7-plugin-options.patch
new file mode 100644
index 000000000000..5f5fc4d38874
--- /dev/null
+++ b/net-dialup/rp-pppoe/files/rp-pppoe-3.7-plugin-options.patch
@@ -0,0 +1,12 @@
+diff -Nur rp-pppoe-3.7.orig/scripts/pppoe-connect.in rp-pppoe-3.7/scripts/pppoe-connect.in
+--- rp-pppoe-3.7.orig/scripts/pppoe-connect.in 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/scripts/pppoe-connect.in 2006-02-06 23:31:53.608100500 +0200
+@@ -197,7 +197,7 @@
+
+ # If we're using kernel-mode PPPoE on Linux...
+ if test "$LINUX_PLUGIN" != "" ; then
+- PLUGIN_OPTS="plugin $LINUX_PLUGIN nic-$ETH"
++ PLUGIN_OPTS="plugin $LINUX_PLUGIN"
+ if test -n "$SERVICENAME" ; then
+ PLUGIN_OPTS="$PLUGIN_OPTS rp_pppoe_service $SERVICENAME"
+ fi
diff --git a/net-dialup/rp-pppoe/files/rp-pppoe-3.7-username-charset.patch b/net-dialup/rp-pppoe/files/rp-pppoe-3.7-username-charset.patch
new file mode 100644
index 000000000000..0681e03378c7
--- /dev/null
+++ b/net-dialup/rp-pppoe/files/rp-pppoe-3.7-username-charset.patch
@@ -0,0 +1,58 @@
+diff -Nur rp-pppoe-3.7.orig/scripts/pppoe-setup.in rp-pppoe-3.7/scripts/pppoe-setup.in
+--- rp-pppoe-3.7.orig/scripts/pppoe-setup.in 2005-11-17 04:14:32.000000000 +0200
++++ rp-pppoe-3.7/scripts/pppoe-setup.in 2006-02-06 23:22:59.150699000 +0200
+@@ -86,11 +86,13 @@
+ $ECHO "USER NAME"
+ $ECHO ""
+ printf "%s" ">>> Enter your PPPoE user name (default $USER): "
+- read U
++ read Uu
+
+- if [ "$U" = "" ] ; then
+- U="$USER"
++ if [ "$Uu" = "" ] ; then
++ Uu="$USER"
+ fi
++
++ U=`echo $Uu | sed -e "s/&/\\\\\&/g"`
+
+ # Under Linux, "fix" the default interface if eth1 is not available
+ if test `uname -s` = "Linux" ; then
+@@ -221,7 +223,7 @@
+ $ECHO "** Summary of what you entered **"
+ $ECHO ""
+ $ECHO "Ethernet Interface: $E"
+- $ECHO "User name: $U"
++ $ECHO "User name: $Uu"
+ if [ "$D" = "no" ] ; then
+ $ECHO "Activate-on-demand: No"
+ else
+@@ -288,7 +290,12 @@
+ fi
+
+ # Some #$(*& ISP's use a slash in the user name...
+-sed -e "s&^USER=.*&USER='$U'&" \
++for SEP in ':' ';' '/' '!' '|' '_' '-' '@' ; do
++ if [ "$U" = `echo $U | sed "sI${SEP}II"` ]; then
++ break;
++ fi
++done
++sed -e "s${SEP}^USER=.*${SEP}USER='$U'${SEP}"\
+ -e "s&^ETH=.*&ETH='$E'&" \
+ -e "s&^PIDFILE=.*&PIDFILE=\"$VARRUN/\$CF_BASE-pppoe.pid\"&" \
+ -e "s/^FIREWALL=.*/FIREWALL=$FIREWALL/" \
+@@ -337,10 +344,10 @@
+ cp /dev/null /etc/ppp/chap-secrets-bak
+ fi
+
+-egrep -v "^$U|^\"$U\"" /etc/ppp/pap-secrets-bak > /etc/ppp/pap-secrets
+-$ECHO "\"$U\" * \"$PWD1\"" >> /etc/ppp/pap-secrets
+-egrep -v "^$U|^\"$U\"" /etc/ppp/chap-secrets-bak > /etc/ppp/chap-secrets
+-$ECHO "\"$U\" * \"$PWD1\"" >> /etc/ppp/chap-secrets
++egrep -v "^$Uu|^\"$Uu\"" /etc/ppp/pap-secrets-bak > /etc/ppp/pap-secrets
++$ECHO "\"$Uu\" * \"$PWD1\"" >> /etc/ppp/pap-secrets
++egrep -v "^$Uu|^\"$Uu\"" /etc/ppp/chap-secrets-bak > /etc/ppp/chap-secrets
++$ECHO "\"$Uu\" * \"$PWD1\"" >> /etc/ppp/chap-secrets
+
+ $ECHO ""
+ $ECHO ""