diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-09 20:59:14 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-09 20:59:14 +0000 |
commit | 31531a9555f1a6fd33a618dd9cd1c9ac2b5bb60c (patch) | |
tree | 490689ebf6090d1dea94bfa83d8d0ac749ad08b9 /net-dialup/rp-pppoe | |
parent | only enable faac when we are not on ia64 or alpha in src_compile (diff) | |
download | historical-31531a9555f1a6fd33a618dd9cd1c9ac2b5bb60c.tar.gz historical-31531a9555f1a6fd33a618dd9cd1c9ac2b5bb60c.tar.bz2 historical-31531a9555f1a6fd33a618dd9cd1c9ac2b5bb60c.zip |
Fix use invocation
Diffstat (limited to 'net-dialup/rp-pppoe')
-rw-r--r-- | net-dialup/rp-pppoe/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/rp-pppoe/rp-pppoe-3.5.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-dialup/rp-pppoe/ChangeLog b/net-dialup/rp-pppoe/ChangeLog index 2af13f30ae4d..550904098513 100644 --- a/net-dialup/rp-pppoe/ChangeLog +++ b/net-dialup/rp-pppoe/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/rp-pppoe # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/rp-pppoe/ChangeLog,v 1.23 2004/02/12 20:29:22 lanius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/rp-pppoe/ChangeLog,v 1.24 2004/06/09 20:57:29 agriffis Exp $ + + 09 Jun 2004; Aron Griffis <agriffis@gentoo.org> rp-pppoe-3.5.ebuild: + Fix use invocation 12 Feb 2004; Heinrich Wendel <lanius@gentoo.org> files/rp-pppoe.rc: remove background option to fix bug #40164 diff --git a/net-dialup/rp-pppoe/rp-pppoe-3.5.ebuild b/net-dialup/rp-pppoe/rp-pppoe-3.5.ebuild index 2e5dd95e8a8d..89d3077c0d7d 100644 --- a/net-dialup/rp-pppoe/rp-pppoe-3.5.ebuild +++ b/net-dialup/rp-pppoe/rp-pppoe-3.5.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/rp-pppoe/rp-pppoe-3.5.ebuild,v 1.17 2004/01/01 18:25:55 tuxus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/rp-pppoe/rp-pppoe-3.5.ebuild,v 1.18 2004/06/09 20:57:29 agriffis Exp $ DESCRIPTION="A user-mode PPPoE client and server suite for Linux" SRC_URI="http://www.roaringpenguin.com/pppoe/${P}.tar.gz" @@ -23,7 +23,7 @@ src_compile() { econf || die emake || die "Failed to compile" - if [ `use X` ]; then + if use X; then cd ../gui ; make || die "Failed to compile the GUI" fi } @@ -32,7 +32,7 @@ src_install () { make RPM_INSTALL_ROOT=${D} docdir=/usr/share/doc/${PF} install || die "Failed to install" prepalldocs - if [ `use X` ]; then + if use X; then cd ../gui ; make RPM_INSTALL_ROOT=${D} \ datadir=/usr/share/doc/${PF}/ install || die "Failed to install the GUI" dosym /usr/share/doc/${PF}/tkpppoe /usr/share/tkpppoe |