diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-23 05:52:14 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-23 05:52:14 +0000 |
commit | 846adc4d248dead43d9bd79ebef106d13916062f (patch) | |
tree | c9a0a4648542584c8f8cc9bdbe459036cd7bba89 /net-www | |
parent | some fixes (diff) | |
download | gentoo-2-846adc4d248dead43d9bd79ebef106d13916062f.tar.gz gentoo-2-846adc4d248dead43d9bd79ebef106d13916062f.tar.bz2 gentoo-2-846adc4d248dead43d9bd79ebef106d13916062f.zip |
fall back to make if emake fails
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/galeon/galeon-1.2.5.ebuild | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/net-www/galeon/galeon-1.2.5.ebuild b/net-www/galeon/galeon-1.2.5.ebuild index 9557bcf33356..993ad50f710c 100644 --- a/net-www/galeon/galeon-1.2.5.ebuild +++ b/net-www/galeon/galeon-1.2.5.ebuild @@ -8,7 +8,7 @@ SRC_URI="http://download.sourceforge.net/${PN}/${P}.tar.gz HOMEPAGE="http://galeon.sourceforge.net" LICENSE="gpl-2" -KEYWORDS="*" +KEYWORDS="x86" SLOT="0" # dont merge mozilla-1.0, as it wont work with galeon, rather start @@ -60,11 +60,7 @@ src_compile() { use nls || myconf="${myconf} --disable-nls" # use bonobo && myconf="${myconf} --enable-gnome-file-selector" - ./configure --host=${CHOST} \ - --prefix=/usr \ - --mandir=/usr/share/man \ - --sysconfdir=/etc \ - --localstatedir=/var/lib \ + econf \ --with-mozilla-libs=${MOZILLA_FIVE_HOME} \ --with-mozilla-includes=${MOZILLA_FIVE_HOME}/include \ --without-debug --disable-werror \ @@ -73,7 +69,7 @@ src_compile() { --enable-nautilus-view=no \ ${myconf} || die - emake || die + emake || make || die } src_install() { @@ -83,11 +79,7 @@ src_install() { # fine without it (at least it seems like it... *sigh*) #gconftool --shutdown - make prefix=${D}/usr \ - mandir=${D}/usr/share/man \ - sysconfdir=${D}/etc \ - localstatedir=${D}/var/lib \ - install || die + einstall || die dodoc AUTHORS ChangeLog COPYING* FAQ NEWS README TODO THANKS } |