diff options
author | tron <tron@pkgsrc.org> | 2001-01-30 20:33:25 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2001-01-30 20:33:25 +0000 |
commit | 8bb4b32ca20a99304263e549b6658a82fb356a65 (patch) | |
tree | eedd55fdb8db6402d857c7552f4ef039cea7d8ea /net/rp-pppoe/patches | |
parent | 7452b129433a0aceac47fbb74fcdd26c8b57977b (diff) | |
download | pkgsrc-8bb4b32ca20a99304263e549b6658a82fb356a65.tar.gz |
Update "rp-pppoe" package to version 2.6. Changes since version 2.4:
- Code should now compile cleanly on Caldera and Slackware Linux
- Fixed rp-pppoe.spec file to work on Mandrake and Red Hat.
- Deleted some obsolete files
- Fixed bug in Solaris/x86 port (thanks to Philippe Levan)
- Made shell scripts nicer under Solaris (again, Philippe Levan)
- Made adsl-status look under /var/run and /etc/ppp for PID files. Should
fix problems with NetBSD.
- Added PPPD_EXTRA to pppoe.conf; made the PID file depend on the config
file name. This makes it easier to run multiple PPPoE sessions.
- Tested for zero-length TCP option-length field, and for reverse-packing
of type/code bitfields. Thanks to Robert Schlabbach for pointing out
these problems.
- Set umask to 077 in adsl-setup.in to protect created files like
/etc/ppp/pap-secrets.
Diffstat (limited to 'net/rp-pppoe/patches')
-rw-r--r-- | net/rp-pppoe/patches/patch-aa | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/net/rp-pppoe/patches/patch-aa b/net/rp-pppoe/patches/patch-aa index f6d7206f07a..33d66d424df 100644 --- a/net/rp-pppoe/patches/patch-aa +++ b/net/rp-pppoe/patches/patch-aa @@ -1,7 +1,7 @@ -$NetBSD: patch-aa,v 1.3 2000/07/31 19:31:04 tron Exp $ +$NetBSD: patch-aa,v 1.4 2001/01/30 20:33:25 tron Exp $ ---- Makefile.in.orig Mon Jul 31 18:41:18 2000 -+++ Makefile.in Mon Jul 31 21:27:01 2000 +--- Makefile.in.orig Mon Jan 8 15:58:35 2001 ++++ Makefile.in Tue Jan 30 21:26:42 2001 @@ -20,7 +20,7 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ @@ -11,14 +11,8 @@ $NetBSD: patch-aa,v 1.3 2000/07/31 19:31:04 tron Exp $ install=@INSTALL@ install_dir=@INSTALL@ -d sbindir=@sbindir@ -@@ -81,21 +81,21 @@ - $(install) -m 755 -s pppoe-sniff $(RPM_INSTALL_ROOT)$(sbindir) - $(install) -m 755 adsl-connect adsl-start adsl-status adsl-stop adsl-setup $(RPM_INSTALL_ROOT)$(sbindir) - -mkdir -p $(RPM_INSTALL_ROOT)$(docdir) -- $(install) -m 644 CHANGES HOW-TO-CONNECT LICENSE README firewall pap-secrets adsl-state.pl $(RPM_INSTALL_ROOT)$(docdir) -+ $(install) -m 644 CHANGES HOW-TO-CONNECT LICENSE README pap-secrets adsl-state.pl $(RPM_INSTALL_ROOT)$(docdir) - -mkdir -p $(RPM_INSTALL_ROOT)$(mandir)/man8 - $(install) -m 644 pppoe.8 adsl-start.8 adsl-stop.8 adsl-status.8 adsl-connect.8 adsl-setup.8 pppoe-server.8 pppoe-sniff.8 $(RPM_INSTALL_ROOT)$(mandir)/man8 +@@ -101,16 +101,16 @@ + $(install) -m 644 pppoe-sniff.8 $(RPM_INSTALL_ROOT)$(mandir)/man8 -mkdir -p $(RPM_INSTALL_ROOT)$(mandir)/man5 $(install) -m 644 pppoe.conf.5 $(RPM_INSTALL_ROOT)$(mandir)/man5 - -mkdir -p $(RPM_INSTALL_ROOT)/etc/ppp |