diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2002-12-05 12:40:56 +0000 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2002-12-05 12:40:56 +0000 |
commit | b70a3c78bd3850c06ff38abd7b49babdd7f6ea25 (patch) | |
tree | 6ab1c6fbe8518ebdb12bb3d835a4f53bedd982dd /dev-db | |
parent | Forgot the patch on first commit. (diff) | |
download | historical-b70a3c78bd3850c06ff38abd7b49babdd7f6ea25.tar.gz historical-b70a3c78bd3850c06ff38abd7b49babdd7f6ea25.tar.bz2 historical-b70a3c78bd3850c06ff38abd7b49babdd7f6ea25.zip |
using econf now instead of ./configure
Diffstat (limited to 'dev-db')
-rw-r--r-- | dev-db/framerd/framerd-2.4.3.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev-db/framerd/framerd-2.4.3.ebuild b/dev-db/framerd/framerd-2.4.3.ebuild index cedcc0181757..e9dda622c914 100644 --- a/dev-db/framerd/framerd-2.4.3.ebuild +++ b/dev-db/framerd/framerd-2.4.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 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.ebuild,v 1.1 2002/12/05 11:50:10 lordvan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/framerd/framerd-2.4.3.ebuild,v 1.2 2002/12/05 12:40:56 lordvan 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/" @@ -16,11 +16,11 @@ S="${WORKDIR}/${P}" src_compile() { patch -p0 ${S}/etc/setup.fdx ${FILESDIR}/setup.fdx.patch - MY_OPTS="--host=${CHOST} --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man --enable-shared" + MY_OPTS="--enable-shared" if [ ! "`use readline`" ]; then MY_OPTS="${MY_OPTS} --without-readline" fi - ./configure ${MY_OPTS} || die "./configure failed" + econf ${MY_OPTS} || die "./configure failed" emake || die "make failed" #emake test || die "make test failed" # failed!! |