diff options
author | 2007-03-02 09:24:57 +0000 | |
---|---|---|
committer | 2007-03-02 09:24:57 +0000 | |
commit | 81f9eae98533e5cc5ab8803918d0a64aaa8cdab0 (patch) | |
tree | e3173192ec38e0f98c22febeecf6286f76e8b4d1 /net-p2p/dctc/dctc-0.85.9.ebuild | |
parent | Fix has_version syntax, bug 168892 (diff) | |
download | gentoo-2-81f9eae98533e5cc5ab8803918d0a64aaa8cdab0.tar.gz gentoo-2-81f9eae98533e5cc5ab8803918d0a64aaa8cdab0.tar.bz2 gentoo-2-81f9eae98533e5cc5ab8803918d0a64aaa8cdab0.zip |
Fix has_version syntax, bug 168892
(Portage version: 2.1.2-r12)
Diffstat (limited to 'net-p2p/dctc/dctc-0.85.9.ebuild')
-rw-r--r-- | net-p2p/dctc/dctc-0.85.9.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-p2p/dctc/dctc-0.85.9.ebuild b/net-p2p/dctc/dctc-0.85.9.ebuild index 5ea7cad7c024..f4e102cbfe97 100644 --- a/net-p2p/dctc/dctc-0.85.9.ebuild +++ b/net-p2p/dctc/dctc-0.85.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/dctc/dctc-0.85.9.ebuild,v 1.17 2007/01/22 20:04:29 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/dctc/dctc-0.85.9.ebuild,v 1.18 2007/03/02 09:24:57 armin76 Exp $ WANT_AUTOCONF="latest" WANT_AUTOMAKE="latest" @@ -33,7 +33,7 @@ src_unpack() { eautoreconf # This fix fails with db-4.3 - if has_version "=sys-libs/db-4.2*" && ! has_version ">=sys-libs/db-4.3*"; then + if has_version "=sys-libs/db-4.2*" && ! has_version ">=sys-libs/db-4.3"; then local dbfunc="`grep '^#define.*db_env_create' /usr/include/db.h | awk '{print $NF}'`" if [ "${dbfunc}" != "db_env_create" ] ; then sed -i "s:db_env_create:${dbfunc}:g" configure |