diff options
author | 2012-09-12 20:10:17 +0000 | |
---|---|---|
committer | 2012-09-12 20:10:17 +0000 | |
commit | c6cc8113a294525f5de1266196a5749e24a8685b (patch) | |
tree | 137692ecf8d6e5e3680a6b87de8650fc689797ef /net-analyzer | |
parent | Updated version of gcc 4.7 compatibility patch (diff) | |
download | gentoo-2-c6cc8113a294525f5de1266196a5749e24a8685b.tar.gz gentoo-2-c6cc8113a294525f5de1266196a5749e24a8685b.tar.bz2 gentoo-2-c6cc8113a294525f5de1266196a5749e24a8685b.zip |
Fix typos in ebuild, which cause issue with automagic dependencies on sys-apps/tcp-wrappers and dev-db/libdbi
(Portage version: 2.2.0_alpha125/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/rrdtool/ChangeLog | 6 | ||||
-rw-r--r-- | net-analyzer/rrdtool/rrdtool-1.4.7-r1.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/net-analyzer/rrdtool/ChangeLog b/net-analyzer/rrdtool/ChangeLog index f41a78871ee4..8ce5eb965b0c 100644 --- a/net-analyzer/rrdtool/ChangeLog +++ b/net-analyzer/rrdtool/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-analyzer/rrdtool # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.230 2012/09/06 16:50:41 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/ChangeLog,v 1.231 2012/09/12 20:10:17 pinkbyte Exp $ + + 12 Sep 2012; Sergey Popov <pinkbyte@gentoo.org> rrdtool-1.4.7-r1.ebuild: + Fix typos in ebuild, which cause issue with automagic dependencies on + sys-apps/tcp-wrappers and dev-db/libdbi *rrdtool-1.4.7-r1 (06 Sep 2012) diff --git a/net-analyzer/rrdtool/rrdtool-1.4.7-r1.ebuild b/net-analyzer/rrdtool/rrdtool-1.4.7-r1.ebuild index 0d6125d7054d..f045476b19c5 100644 --- a/net-analyzer/rrdtool/rrdtool-1.4.7-r1.ebuild +++ b/net-analyzer/rrdtool/rrdtool-1.4.7-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.7-r1.ebuild,v 1.1 2012/09/06 16:50:41 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/rrdtool/rrdtool-1.4.7-r1.ebuild,v 1.2 2012/09/12 20:10:17 pinkbyte Exp $ EAPI="4" @@ -66,10 +66,10 @@ src_configure() { # Stub configure.ac local myconf=() if ! use tcpd; then - myconf+="--disable-libwrap" + myconf+=( "--disable-libwrap" ) fi if ! use dbi; then - myconf+="--disable-libdbi" + myconf+=( "--disable-libdbi" ) fi econf \ |