diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-09 18:53:04 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-09 18:53:04 +0000 |
commit | a88223df63bebcc9293ae61754a5b08aaed7b8a1 (patch) | |
tree | 5f405d789e184477aa99457874fbe2952d6729c8 /net-analyzer | |
parent | Marked stable on hppa. (diff) | |
download | historical-a88223df63bebcc9293ae61754a5b08aaed7b8a1.tar.gz historical-a88223df63bebcc9293ae61754a5b08aaed7b8a1.tar.bz2 historical-a88223df63bebcc9293ae61754a5b08aaed7b8a1.zip |
Fix use invocation
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/rrdtool/ChangeLog | 8 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.40-r1.ebuild | 10 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.42-r1.ebuild | 10 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.45-r1.ebuild | 10 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.45-r2.ebuild | 8 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.45.ebuild | 10 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.46.ebuild | 8 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.0.47.ebuild | 8 | ||||
-rw-r--r-- | net-analyzer/ucd-snmp/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r1.ebuild | 2 | ||||
-rw-r--r-- | net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r2.ebuild | 4 |
11 files changed, 47 insertions, 37 deletions
diff --git a/net-analyzer/rrdtool/ChangeLog b/net-analyzer/rrdtool/ChangeLog index 39517a0011a2..5b9f14bf1110 100644 --- a/net-analyzer/rrdtool/ChangeLog +++ b/net-analyzer/rrdtool/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-analyzer/rrdtool # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.34 2004/05/08 11:15:09 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.35 2004/06/09 18:53:04 agriffis Exp $ + + 09 Jun 2004; Aron Griffis <agriffis@gentoo.org> rrdtool-1.0.40-r1.ebuild, + rrdtool-1.0.42-r1.ebuild, rrdtool-1.0.45-r1.ebuild, + rrdtool-1.0.45-r2.ebuild, rrdtool-1.0.45.ebuild, rrdtool-1.0.46.ebuild, + rrdtool-1.0.47.ebuild: + Fix use invocation 08 May 2004; Danny van Dyk <kugelfang@gentoo.org> : Marked ~amd64. diff --git a/net-analyzer/rrdtool/rrdtool-1.0.40-r1.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.40-r1.ebuild index 955adda36b23..c3abccd7150d 100644 --- a/net-analyzer/rrdtool/rrdtool-1.0.40-r1.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.0.40-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-analyzer/rrdtool/rrdtool-1.0.40-r1.ebuild,v 1.4 2004/05/08 11:15:09 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.40-r1.ebuild,v 1.5 2004/06/09 18:53:04 agriffis Exp $ inherit perl-module @@ -21,11 +21,11 @@ RDEPEND="tcltk? ( dev-lang/tcl )" TCLVER="" pkg_setup() { - if [ "`use tcltk`" ]; then + if use tcltk; then TCLVER=`awk -F\' '/TCL_VERSION/ {print $2}' /usr/lib/tclConfig.sh` fi - if [ "`use perl`" ]; then + if use perl; then perl-module_pkg_setup fi } @@ -66,13 +66,13 @@ src_install() { insinto /usr/share/doc/${PF}/contrib doins contrib/* - if [ `use perl` ] ; then + if use perl ; then perlinfo mytargets="site-perl-install" perl-module_src_install || die fi - if [ `use tcltk` ] ; then + if use tcltk ; then mv ${S}/tcl/tclrrd.so ${S}/tcl/tclrrd${PV}.so insinto /usr/lib/tcl${TCL_VER}/tclrrd${PV} doins ${S}/tcl/tclrrd${PV}.so diff --git a/net-analyzer/rrdtool/rrdtool-1.0.42-r1.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.42-r1.ebuild index 66e0a8076ff6..31829efe69e3 100644 --- a/net-analyzer/rrdtool/rrdtool-1.0.42-r1.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.0.42-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-analyzer/rrdtool/rrdtool-1.0.42-r1.ebuild,v 1.5 2004/05/08 11:15:09 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.42-r1.ebuild,v 1.6 2004/06/09 18:53:04 agriffis Exp $ inherit perl-module flag-o-matic @@ -23,11 +23,11 @@ RDEPEND="tcltk? ( dev-lang/tcl )" TCLVER="" pkg_setup() { - if [ "`use tcltk`" ]; then + if use tcltk; then TCLVER=`awk -F\' '/TCL_VERSION/ {print $2}' /usr/lib/tclConfig.sh` fi - if [ "`use perl`" ]; then + if use perl; then perl-module_pkg_setup fi } @@ -68,13 +68,13 @@ src_install() { insinto /usr/share/doc/${PF}/contrib doins contrib/* - if [ `use perl` ] ; then + if use perl ; then perlinfo mytargets="site-perl-install" perl-module_src_install || die fi - if [ `use tcltk` ] ; then + if use tcltk ; then mv ${S}/tcl/tclrrd.so ${S}/tcl/tclrrd${PV}.so insinto /usr/lib/tcl${TCL_VER}/tclrrd${PV} doins ${S}/tcl/tclrrd${PV}.so diff --git a/net-analyzer/rrdtool/rrdtool-1.0.45-r1.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.45-r1.ebuild index dd7e0e4091ea..8ad393604690 100644 --- a/net-analyzer/rrdtool/rrdtool-1.0.45-r1.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.0.45-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-analyzer/rrdtool/rrdtool-1.0.45-r1.ebuild,v 1.2 2004/05/08 11:15:09 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.45-r1.ebuild,v 1.3 2004/06/09 18:53:04 agriffis Exp $ inherit perl-module flag-o-matic gnuconfig @@ -23,11 +23,11 @@ RDEPEND="tcltk? ( dev-lang/tcl )" TCLVER="" pkg_setup() { - if [ "`use tcltk`" ]; then + if use tcltk; then TCLVER=`awk -F\' '/TCL_VERSION/ {print $2}' /usr/lib/tclConfig.sh` fi - if [ "`use perl`" ]; then + if use perl; then perl-module_pkg_setup fi } @@ -70,13 +70,13 @@ src_install() { insinto /usr/share/doc/${PF}/contrib doins contrib/* - if [ `use perl` ] ; then + if use perl ; then perlinfo mytargets="site-perl-install" perl-module_src_install || die fi - if [ `use tcltk` ] ; then + if use tcltk ; then mv ${S}/tcl/tclrrd.so ${S}/tcl/tclrrd${PV}.so insinto /usr/lib/tcl${TCL_VER}/tclrrd${PV} doins ${S}/tcl/tclrrd${PV}.so diff --git a/net-analyzer/rrdtool/rrdtool-1.0.45-r2.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.45-r2.ebuild index f4fb49238836..6d31a89b1797 100644 --- a/net-analyzer/rrdtool/rrdtool-1.0.45-r2.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.0.45-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-analyzer/rrdtool/rrdtool-1.0.45-r2.ebuild,v 1.5 2004/02/20 08:07:32 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.45-r2.ebuild,v 1.6 2004/06/09 18:53:04 agriffis Exp $ inherit perl-module flag-o-matic gnuconfig @@ -40,7 +40,7 @@ src_compile() { use amd64 && gnuconfig_update - if [ `use perl` ] ; then + if use perl ; then MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION ge "6.11" )'` if [ "${MMSIXELEVEN}" ]; then econf \ @@ -87,13 +87,13 @@ src_install() { insinto /usr/share/doc/${PF}/contrib doins contrib/* - if [ `use perl` ] ; then + if use perl ; then perlinfo mytargets="site-perl-install" perl-module_src_install || die fi - if [ `use tcltk` ] ; then + if use tcltk ; then mv ${S}/tcl/tclrrd.so ${S}/tcl/tclrrd${PV}.so insinto /usr/lib/tcl${TCL_VER}/tclrrd${PV} doins ${S}/tcl/tclrrd${PV}.so diff --git a/net-analyzer/rrdtool/rrdtool-1.0.45.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.45.ebuild index e2d616bb6dd3..00b4847b5624 100644 --- a/net-analyzer/rrdtool/rrdtool-1.0.45.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.0.45.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-analyzer/rrdtool/rrdtool-1.0.45.ebuild,v 1.7 2004/05/08 11:15:09 kugelfang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.45.ebuild,v 1.8 2004/06/09 18:53:04 agriffis Exp $ inherit perl-module flag-o-matic gnuconfig @@ -23,11 +23,11 @@ RDEPEND="tcltk? ( dev-lang/tcl )" TCLVER="" pkg_setup() { - if [ "`use tcltk`" ]; then + if use tcltk; then TCLVER=`awk -F\' '/TCL_VERSION/ {print $2}' /usr/lib/tclConfig.sh` fi - if [ "`use perl`" ]; then + if use perl; then perl-module_pkg_setup fi } @@ -70,13 +70,13 @@ src_install() { insinto /usr/share/doc/${PF}/contrib doins contrib/* - if [ `use perl` ] ; then + if use perl ; then perlinfo mytargets="site-perl-install" perl-module_src_install || die fi - if [ `use tcltk` ] ; then + if use tcltk ; then mv ${S}/tcl/tclrrd.so ${S}/tcl/tclrrd${PV}.so insinto /usr/lib/tcl${TCL_VER}/tclrrd${PV} doins ${S}/tcl/tclrrd${PV}.so diff --git a/net-analyzer/rrdtool/rrdtool-1.0.46.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.46.ebuild index e85786802d10..e2ebaa88a262 100644 --- a/net-analyzer/rrdtool/rrdtool-1.0.46.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.0.46.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-analyzer/rrdtool/rrdtool-1.0.46.ebuild,v 1.2 2004/03/18 15:23:22 aliz Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.46.ebuild,v 1.3 2004/06/09 18:53:04 agriffis Exp $ inherit perl-module flag-o-matic gnuconfig eutils @@ -46,7 +46,7 @@ src_compile() { && myconf="${myconf} --with-tcllib=/usr/lib" \ || myconf="${myconf} --without-tcllib" - if [ `use perl` ] ; then + if use perl ; then MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION ge "6.11" )'` if [ "${MMSIXELEVEN}" ]; then econf \ @@ -93,13 +93,13 @@ src_install() { insinto /usr/share/doc/${PF}/contrib doins contrib/* - if [ `use perl` ] ; then + if use perl ; then perlinfo mytargets="site-perl-install" perl-module_src_install || die fi - if [ `use tcltk` ] ; then + if use tcltk ; then mv ${S}/tcl/tclrrd.so ${S}/tcl/tclrrd${PV}.so insinto /usr/lib/tcl${TCL_VER}/tclrrd${PV} doins ${S}/tcl/tclrrd${PV}.so diff --git a/net-analyzer/rrdtool/rrdtool-1.0.47.ebuild b/net-analyzer/rrdtool/rrdtool-1.0.47.ebuild index 1ebecb30e531..b3b838bc3e63 100644 --- a/net-analyzer/rrdtool/rrdtool-1.0.47.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.0.47.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-analyzer/rrdtool/rrdtool-1.0.47.ebuild,v 1.1 2004/04/07 17:08:16 mholzer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.0.47.ebuild,v 1.2 2004/06/09 18:53:04 agriffis Exp $ inherit perl-module flag-o-matic gnuconfig eutils @@ -44,7 +44,7 @@ src_compile() { && myconf="${myconf} --with-tcllib=/usr/lib" \ || myconf="${myconf} --without-tcllib" - if [ `use perl` ] ; then + if use perl ; then MMSIXELEVEN=`perl -e 'use ExtUtils::MakeMaker; print( $ExtUtils::MakeMaker::VERSION ge "6.11" )'` if [ "${MMSIXELEVEN}" ]; then econf \ @@ -91,13 +91,13 @@ src_install() { insinto /usr/share/doc/${PF}/contrib doins contrib/* - if [ `use perl` ] ; then + if use perl ; then perlinfo mytargets="site-perl-install" perl-module_src_install || die fi - if [ `use tcltk` ] ; then + if use tcltk ; then mv ${S}/tcl/tclrrd.so ${S}/tcl/tclrrd${PV}.so insinto /usr/lib/tcl${TCL_VER}/tclrrd${PV} doins ${S}/tcl/tclrrd${PV}.so diff --git a/net-analyzer/ucd-snmp/ChangeLog b/net-analyzer/ucd-snmp/ChangeLog index d6db0d0fb46f..cdd960e28a86 100644 --- a/net-analyzer/ucd-snmp/ChangeLog +++ b/net-analyzer/ucd-snmp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/ucd-snmp # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ChangeLog,v 1.22 2004/06/05 15:55:01 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ChangeLog,v 1.23 2004/06/09 18:52:48 agriffis Exp $ + + 09 Jun 2004; Aron Griffis <agriffis@gentoo.org> ucd-snmp-4.2.6-r1.ebuild, + ucd-snmp-4.2.6-r2.ebuild: + Fix use invocation 05 Jun 2004; Bryan Østergaard <kloeri@gentoo.org> ucd-snmp-4.2.6-r2.ebuild: Stable on alpha. diff --git a/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r1.ebuild b/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r1.ebuild index 6ac853b60f2f..939c6b307bae 100644 --- a/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r1.ebuild +++ b/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-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-analyzer/ucd-snmp/ucd-snmp-4.2.6-r1.ebuild,v 1.5 2004/04/26 04:29:21 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r1.ebuild,v 1.6 2004/06/09 18:52:48 agriffis Exp $ IUSE="ssl ipv6 tcpd" PROVIDE="virtual/snmp" diff --git a/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r2.ebuild b/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r2.ebuild index 0ff86aa26be8..d594156d3e99 100644 --- a/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r2.ebuild +++ b/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-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-analyzer/ucd-snmp/ucd-snmp-4.2.6-r2.ebuild,v 1.7 2004/06/05 15:55:01 kloeri Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/ucd-snmp/ucd-snmp-4.2.6-r2.ebuild,v 1.8 2004/06/09 18:52:48 agriffis Exp $ inherit flag-o-matic eutils @@ -43,7 +43,7 @@ src_compile() { myconf="${myconf} `use_with tcpd libwrap`" myconf="${myconf} `use_enable ipv6`" - if [ "`use ssl`" ] && has_version '=dev-libs/openssl-0.9.6*' ; then + if use ssl && has_version '=dev-libs/openssl-0.9.6*' ; then einfo "Found openssl version 0.9.6: adding extra flags." append-flags "-DSTRUCT_DES_KS_STRUCT_HAS_WEAK_KEY" fi |