diff options
author | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 11:21:56 +0000 |
---|---|---|
committer | Mikael Hallendal <hallski@gentoo.org> | 2001-11-10 11:21:56 +0000 |
commit | 77b73e8dbbe778f0ba110c1c17cec31c9d0b62f9 (patch) | |
tree | 15a3b3743bc1a97ca2d70f3357d2126c9ccc73b8 /dev-db/edb | |
parent | new version (diff) | |
download | gentoo-2-77b73e8dbbe778f0ba110c1c17cec31c9d0b62f9.tar.gz gentoo-2-77b73e8dbbe778f0ba110c1c17cec31c9d0b62f9.tar.bz2 gentoo-2-77b73e8dbbe778f0ba110c1c17cec31c9d0b62f9.zip |
A=-fix
Diffstat (limited to 'dev-db/edb')
-rw-r--r-- | dev-db/edb/edb-1.0.2-r1.ebuild | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/dev-db/edb/edb-1.0.2-r1.ebuild b/dev-db/edb/edb-1.0.2-r1.ebuild index ad6f06222f8d..b00f748ea0ce 100644 --- a/dev-db/edb/edb-1.0.2-r1.ebuild +++ b/dev-db/edb/edb-1.0.2-r1.ebuild @@ -1,29 +1,30 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Your Name <your email> -# $Header: /var/cvsroot/gentoo-x86/dev-db/edb/edb-1.0.2-r1.ebuild,v 1.1 2001/10/06 12:36:36 azarah Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/edb/edb-1.0.2-r1.ebuild,v 1.2 2001/11/10 11:21:56 hallski Exp $ -A=${P}.tar.gz S=${WORKDIR}/${P} DESCRIPTION="Enlightment Data Base" -SRC_URI="http://prdownloads.sourceforge.net/enlightenment/${A}" +SRC_URI="http://prdownloads.sourceforge.net/enlightenment/${P}.tar.gz" HOMEPAGE="http://enlightenment.org" RDEPEND="virtual/glibc >=x11-libs/gtk+-1.2.10-r4" -DEPEND="$RDEPEND sys-apps/which" -src_compile() { - - try ./configure --prefix=/usr --enable-compat185 --enable-dump185 \ - --enable-cxx --host=${CHOST} - try make +DEPEND="$RDEPEND + sys-apps/which" +src_compile() { + ./configure --host=${CHOST} \ + --prefix=/usr \ + --enable-compat185 \ + --enable-dump185 \ + --enable-cxx + assert + + emake || die } src_install () { - - try make DESTDIR=${D} install - + make DESTDIR=${D} install || die } - |