diff options
author | Geert Bevin <gbevin@gentoo.org> | 2002-02-04 19:05:56 +0000 |
---|---|---|
committer | Geert Bevin <gbevin@gentoo.org> | 2002-02-04 19:05:56 +0000 |
commit | fdb44c5ea1078908b08e5c365648aaaa4339f2da (patch) | |
tree | 51e28e980cb6ac1743a8eb3944b13f80a1d7b9b7 /net-www | |
parent | fix the qt dep: 2.2* is unresolvable, change to 2* (this will be better imple... (diff) | |
download | historical-fdb44c5ea1078908b08e5c365648aaaa4339f2da.tar.gz historical-fdb44c5ea1078908b08e5c365648aaaa4339f2da.tar.bz2 historical-fdb44c5ea1078908b08e5c365648aaaa4339f2da.zip |
fixed sandbox violation and cleaned up ebuild
Diffstat (limited to 'net-www')
-rw-r--r-- | net-www/prozilla/prozilla-1.3.6.ebuild | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/net-www/prozilla/prozilla-1.3.6.ebuild b/net-www/prozilla/prozilla-1.3.6.ebuild index 806bd6d70cdc..6cec5393d832 100644 --- a/net-www/prozilla/prozilla-1.3.6.ebuild +++ b/net-www/prozilla/prozilla-1.3.6.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Parag Mehta <pm@gentoo.org> -#$Header: /var/cvsroot/gentoo-x86/net-www/prozilla/prozilla-1.3.6.ebuild,v 1.1 2001/08/19 03:35:48 pm Exp $ +#$Header: /var/cvsroot/gentoo-x86/net-www/prozilla/prozilla-1.3.6.ebuild,v 1.2 2002/02/04 19:05:56 gbevin Exp $ A=${P}.tar.gz S=${WORKDIR}/${P} @@ -13,15 +13,19 @@ DEPEND="virtual/glibc >=sys-libs/ncurses-5.2" src_compile() { - try ./configure --prefix=/usr --infodir=/usr/share/info --mandir=/usr/share/man \ - --host=${CHOST} --sysconfdir=/etc - try make + ./configure --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --host=${CHOST} \ + --sysconfdir=/etc || die + emake || die } src_install () { - try make DESTDIR=${D} install - - dodoc ANNOUNCE AUTHORS COPYING CREDITS ChangeLog FAQ NEWS README TODO + make DESTDIR=${D} \ + sysconfdir=${D}/etc \ + install || die + dodoc ANNOUNCE AUTHORS COPYING CREDITS ChangeLog FAQ NEWS README TODO } |