diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 16:51:05 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-02 16:51:05 +0000 |
commit | 841c4b8214e05bd9da4f78dfde819e7ccb0d3b03 (patch) | |
tree | 9766ef9e4745336ee797177a3e26a0f507bda7f2 /dev-db/framerd | |
parent | Removing pre-Beta1 mono stuff. (Manifest recommit) (diff) | |
download | gentoo-2-841c4b8214e05bd9da4f78dfde819e7ccb0d3b03.tar.gz gentoo-2-841c4b8214e05bd9da4f78dfde819e7ccb0d3b03.tar.bz2 gentoo-2-841c4b8214e05bd9da4f78dfde819e7ccb0d3b03.zip |
Fix use invocation
Diffstat (limited to 'dev-db/framerd')
-rw-r--r-- | dev-db/framerd/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/framerd/framerd-2.4.3-r1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-db/framerd/ChangeLog b/dev-db/framerd/ChangeLog index fb9ca98a92ba..7d16dabdb53f 100644 --- a/dev-db/framerd/ChangeLog +++ b/dev-db/framerd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/framerd # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/framerd/ChangeLog,v 1.8 2004/04/25 23:23:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/framerd/ChangeLog,v 1.9 2004/06/02 16:51:05 agriffis Exp $ + + 02 Jun 2004; Aron Griffis <agriffis@gentoo.org> framerd-2.4.3-r1.ebuild: + Fix use invocation 25 Apr 2004; Aron Griffis <agriffis@gentoo.org> framerd-2.4.3-r1.ebuild: Add die following econf for bug 48950 diff --git a/dev-db/framerd/framerd-2.4.3-r1.ebuild b/dev-db/framerd/framerd-2.4.3-r1.ebuild index 8334887fd2ae..b4ecf31f664e 100644 --- a/dev-db/framerd/framerd-2.4.3-r1.ebuild +++ b/dev-db/framerd/framerd-2.4.3-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/dev-db/framerd/framerd-2.4.3-r1.ebuild,v 1.8 2004/04/25 23:23:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/framerd/framerd-2.4.3-r1.ebuild,v 1.9 2004/06/02 16:51:05 agriffis Exp $ DESCRIPTION="FramerD is a portable distributed object-oriented database designed to support the maintenance and sharing of knowledge bases." HOMEPAGE="http://www.framerd.org/" @@ -17,7 +17,7 @@ DEPEND="virtual/glibc src_compile() { patch -p0 ${S}/etc/setup.fdx ${FILESDIR}/setup.fdx.patch MY_OPTS="--enable-shared" - if [ ! "`use readline`" ]; then + if ! use readline; then MY_OPTS="${MY_OPTS} --without-readline" fi econf ${MY_OPTS} || die "econf failed" |