summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Griffis <agriffis@gentoo.org>2004-06-09 20:59:14 +0000
committerAron Griffis <agriffis@gentoo.org>2004-06-09 20:59:14 +0000
commitec14878ef318ef1f49502d05c3a2983861378cd2 (patch)
tree8a500c7625863b952613b99e26a8332a7f9957ae /net-dialup/ppp
parentonly enable faac when we are not on ia64 or alpha in src_compile (Manifest re... (diff)
downloadgentoo-2-ec14878ef318ef1f49502d05c3a2983861378cd2.tar.gz
gentoo-2-ec14878ef318ef1f49502d05c3a2983861378cd2.tar.bz2
gentoo-2-ec14878ef318ef1f49502d05c3a2983861378cd2.zip
Fix use invocation
Diffstat (limited to 'net-dialup/ppp')
-rw-r--r--net-dialup/ppp/ChangeLog6
-rw-r--r--net-dialup/ppp/ppp-2.4.1-r14.ebuild4
-rw-r--r--net-dialup/ppp/ppp-2.4.2-r1.ebuild6
-rw-r--r--net-dialup/ppp/ppp-2.4.2-r2.ebuild6
-rw-r--r--net-dialup/ppp/ppp-2.4.2.ebuild2
5 files changed, 14 insertions, 10 deletions
diff --git a/net-dialup/ppp/ChangeLog b/net-dialup/ppp/ChangeLog
index 96982fd018c3..aae2e24f4054 100644
--- a/net-dialup/ppp/ChangeLog
+++ b/net-dialup/ppp/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-dialup/ppp
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ChangeLog,v 1.60 2004/05/04 00:06:47 jhuebel Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ChangeLog,v 1.61 2004/06/09 20:57:51 agriffis Exp $
+
+ 09 Jun 2004; Aron Griffis <agriffis@gentoo.org> ppp-2.4.1-r14.ebuild,
+ ppp-2.4.2-r1.ebuild, ppp-2.4.2-r2.ebuild, ppp-2.4.2.ebuild:
+ Fix use invocation
03 May 2004; Jason Eric Huebel <jhuebel@gentoo.org> ppp-2.4.2-r2.ebuild:
gnuconfig update
diff --git a/net-dialup/ppp/ppp-2.4.1-r14.ebuild b/net-dialup/ppp/ppp-2.4.1-r14.ebuild
index d989585242c6..ff5fe6655acc 100644
--- a/net-dialup/ppp/ppp-2.4.1-r14.ebuild
+++ b/net-dialup/ppp/ppp-2.4.1-r14.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.1-r14.ebuild,v 1.17 2004/04/27 21:42:07 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.1-r14.ebuild,v 1.18 2004/06/09 20:57:51 agriffis Exp $
inherit eutils
@@ -50,7 +50,7 @@ src_compile() {
#fix Makefiles to compile optimized
cd ${S}/pppd
mv Makefile Makefile.orig
- if([ `use ipv6` ]) then
+ if use ipv6; then
sed -e "s:COPTS = -O2 -pipe -Wall -g:COPTS = ${CFLAGS}:" \
-e "s/LIBS =/LIBS = -lcrypt/" \
-e "s/#HAVE_INET6/HAVE_INET6/" \
diff --git a/net-dialup/ppp/ppp-2.4.2-r1.ebuild b/net-dialup/ppp/ppp-2.4.2-r1.ebuild
index 8eb377ff8791..58f3ecd1a2df 100644
--- a/net-dialup/ppp/ppp-2.4.2-r1.ebuild
+++ b/net-dialup/ppp/ppp-2.4.2-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r1.ebuild,v 1.6 2004/04/30 12:12:07 lanius Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r1.ebuild,v 1.7 2004/06/09 20:57:51 agriffis Exp $
inherit eutils
@@ -29,7 +29,7 @@ src_unpack() {
epatch ${FILESDIR}/${PV}/pcap.patch
epatch ${FILESDIR}/${PV}/stdopt-mppe-mppc-0.82.patch.gz
- if [ "`use atm`" -a "`use x86`" ]; then
+ if use atm && use x86; then
einfo "Enabling PPPoATM support"
epatch ${FILESDIR}/${PV}/pppoatm.diff.gz
fi
@@ -100,7 +100,7 @@ src_install() {
dodir /usr/lib/pppd/$(awk -F '"' '/VERSION/ {print $2}' pppd/patchlevel.h)
mv ${D}/usr/lib/*.so ${D}/usr/lib/pppd/$(awk -F '"' '/VERSION/ {print $2}' pppd/patchlevel.h)
- if [ "`use atm`" -a "`use x86`" ]; then
+ if use atm && use x86; then
dolib.so pppd/plugins/pppoatm.so
fi
diff --git a/net-dialup/ppp/ppp-2.4.2-r2.ebuild b/net-dialup/ppp/ppp-2.4.2-r2.ebuild
index b11e6526c8a0..7584e722ae1d 100644
--- a/net-dialup/ppp/ppp-2.4.2-r2.ebuild
+++ b/net-dialup/ppp/ppp-2.4.2-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r2.ebuild,v 1.6 2004/06/07 16:52:00 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r2.ebuild,v 1.7 2004/06/09 20:57:51 agriffis Exp $
inherit eutils gnuconfig
@@ -29,7 +29,7 @@ src_unpack() {
epatch ${FILESDIR}/${PV}/pcap.patch
epatch ${FILESDIR}/${PV}/stdopt-mppe-mppc-0.82.patch.gz
- if [ "`use atm`" -a "`use x86`" ]; then
+ if use atm && use x86; then
einfo "Enabling PPPoATM support"
epatch ${FILESDIR}/${PV}/pppoatm-2.diff.gz
sed -i -e "s/^LIBS =/LIBS = -latm/" pppd/Makefile.linux || die
@@ -100,7 +100,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`" -a "`use x86`" ]; then
+ if use atm && use x86; then
dolib.so pppd/plugins/pppoatm.so
fi
dodir /usr/lib/pppd/$(awk -F '"' '/VERSION/ {print $2}' pppd/patchlevel.h)
diff --git a/net-dialup/ppp/ppp-2.4.2.ebuild b/net-dialup/ppp/ppp-2.4.2.ebuild
index 57957040a8f1..a1b80e2927a8 100644
--- a/net-dialup/ppp/ppp-2.4.2.ebuild
+++ b/net-dialup/ppp/ppp-2.4.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2.ebuild,v 1.5 2004/04/27 21:42:07 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2.ebuild,v 1.6 2004/06/09 20:57:51 agriffis Exp $
inherit eutils