diff options
author | 2004-09-27 10:35:31 +0000 | |
---|---|---|
committer | 2004-09-27 10:35:31 +0000 | |
commit | 2c299bf2863d006980f1e20b88123b54dde560f6 (patch) | |
tree | 39a531822760f9677721a1c3d2e1177eddb05957 | |
parent | mirror syntax (Manifest recommit) (diff) | |
download | gentoo-2-2c299bf2863d006980f1e20b88123b54dde560f6.tar.gz gentoo-2-2c299bf2863d006980f1e20b88123b54dde560f6.tar.bz2 gentoo-2-2c299bf2863d006980f1e20b88123b54dde560f6.zip |
remove unneccesary x86 dependencie of atm use flag, bug #55881
-rw-r--r-- | net-dialup/ppp/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/ppp/ppp-2.4.2-r3.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-dialup/ppp/ChangeLog b/net-dialup/ppp/ChangeLog index 556d37a5adca..20cafa6f1e5c 100644 --- a/net-dialup/ppp/ChangeLog +++ b/net-dialup/ppp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/ppp # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ChangeLog,v 1.69 2004/09/27 10:29:28 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ChangeLog,v 1.70 2004/09/27 10:35:31 lanius Exp $ + + 27 Sep 2004; Heinrich Wendel <lanius@gentoo.org> ppp-2.4.2-r3.ebuild: + remove unneccesary x86 dependencie of atm use flag, bug #55881 27 Sep 2004; Heinrich Wendel <lanius@gentoo.org> files/2.4.2/net.ppp0: load ppp module if not present, bug #55233 diff --git a/net-dialup/ppp/ppp-2.4.2-r3.ebuild b/net-dialup/ppp/ppp-2.4.2-r3.ebuild index 09acb2f8b1c8..03f892bc6b1f 100644 --- a/net-dialup/ppp/ppp-2.4.2-r3.ebuild +++ b/net-dialup/ppp/ppp-2.4.2-r3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r3.ebuild,v 1.2 2004/09/25 07:02:56 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r3.ebuild,v 1.3 2004/09/27 10:35:31 lanius Exp $ inherit eutils gnuconfig flag-o-matic @@ -30,7 +30,7 @@ src_unpack() { epatch ${FILESDIR}/${PV}/control_c.patch epatch ${FILESDIR}/${PV}/stdopt-mppe-mppc-0.82.patch.gz - if use atm && use x86; then + if use atm; then einfo "Enabling PPPoATM support" epatch ${FILESDIR}/${PV}/pppoatm-2.diff.gz sed -i -e "s/^LIBS =/LIBS = -latm/" pppd/Makefile.linux || die @@ -104,7 +104,7 @@ src_install() { dolib.so pppd/plugins/minconn.so dolib.so pppd/plugins/passprompt.so dolib.so pppd/plugins/rp-pppoe/rp-pppoe.so - if use atm && use x86; then + if use atm; then dolib.so pppd/plugins/pppoatm.so fi dodir /usr/lib/pppd/$(awk -F '"' '/VERSION/ {print $2}' pppd/patchlevel.h) |