diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-10 00:52:55 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-10 00:52:55 +0000 |
commit | 1530a73884c77178f204d17bc0ce7b002cb46758 (patch) | |
tree | f88022bc743d69756fd9759a34dedf18c22aff47 /net-misc/zaptel | |
parent | i almost forgot to use ${CC/ .*/} instead of calling gcc directly... that wou... (diff) | |
download | gentoo-2-1530a73884c77178f204d17bc0ce7b002cb46758.tar.gz gentoo-2-1530a73884c77178f204d17bc0ce7b002cb46758.tar.bz2 gentoo-2-1530a73884c77178f204d17bc0ce7b002cb46758.zip |
Fix use invocation
Diffstat (limited to 'net-misc/zaptel')
-rw-r--r-- | net-misc/zaptel/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/zaptel/zaptel-0.7.0.ebuild | 2 | ||||
-rw-r--r-- | net-misc/zaptel/zaptel-0.8.1.ebuild | 2 | ||||
-rw-r--r-- | net-misc/zaptel/zaptel-0.9.1.ebuild | 6 |
4 files changed, 10 insertions, 6 deletions
diff --git a/net-misc/zaptel/ChangeLog b/net-misc/zaptel/ChangeLog index ff6f74d3786d..828187d398a3 100644 --- a/net-misc/zaptel/ChangeLog +++ b/net-misc/zaptel/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-misc/zaptel # Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/zaptel/ChangeLog,v 1.8 2004/05/10 13:17:52 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/zaptel/ChangeLog,v 1.9 2004/06/10 00:51:59 agriffis Exp $ + + 09 Jun 2004; Aron Griffis <agriffis@gentoo.org> zaptel-0.7.0.ebuild, + zaptel-0.8.1.ebuild, zaptel-0.9.1.ebuild: + Fix use invocation 10 May 2004; David Holm <dholm@gentoo.org> zaptel-0.9.1.ebuild: Added to ~ppc. diff --git a/net-misc/zaptel/zaptel-0.7.0.ebuild b/net-misc/zaptel/zaptel-0.7.0.ebuild index b5c33efb03be..e028af3c9ca2 100644 --- a/net-misc/zaptel/zaptel-0.7.0.ebuild +++ b/net-misc/zaptel/zaptel-0.7.0.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-misc/zaptel/zaptel-0.7.0.ebuild,v 1.4 2004/04/27 21:56:21 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/zaptel/zaptel-0.7.0.ebuild,v 1.5 2004/06/10 00:51:59 agriffis Exp $ inherit eutils diff --git a/net-misc/zaptel/zaptel-0.8.1.ebuild b/net-misc/zaptel/zaptel-0.8.1.ebuild index 0721784ec91f..640e46f5fa49 100644 --- a/net-misc/zaptel/zaptel-0.8.1.ebuild +++ b/net-misc/zaptel/zaptel-0.8.1.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-misc/zaptel/zaptel-0.8.1.ebuild,v 1.3 2004/04/27 21:56:21 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/zaptel/zaptel-0.8.1.ebuild,v 1.4 2004/06/10 00:51:59 agriffis Exp $ inherit eutils diff --git a/net-misc/zaptel/zaptel-0.9.1.ebuild b/net-misc/zaptel/zaptel-0.9.1.ebuild index 180cd113c450..6ad66c10668d 100644 --- a/net-misc/zaptel/zaptel-0.9.1.ebuild +++ b/net-misc/zaptel/zaptel-0.9.1.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-misc/zaptel/zaptel-0.9.1.ebuild,v 1.2 2004/05/10 13:17:52 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/zaptel/zaptel-0.9.1.ebuild,v 1.3 2004/06/10 00:51:59 agriffis Exp $ inherit eutils @@ -78,7 +78,7 @@ src_unpack() { sed -i -e "s:#\( ztdummy.*\):\1:" Makefile # devfs support - if [ -n "`use devfs26`" ]; then + if use devfs26; then einfo "Enabling experimental devfs support for linux-2.6..." epatch ${FILESDIR}/${P}-experimental-devfs26.diff fi @@ -115,7 +115,7 @@ src_install() { } pkg_postinst() { - if [ -n "`use devfs26`" ]; then + if use devfs26; then ewarn "*** Warning! ***" ewarn "Devfs support for linux-2.6 is experimental and not" ewarn "supported by digium or the asterisk project!" |