diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-16 21:34:43 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-16 21:34:43 +0000 |
commit | 873a2159368f380db09ac65705d2f8b128e344b5 (patch) | |
tree | 8012f8651bd5ed382f6ae899598176d324160cce /x11-misc/ASFiles | |
parent | Add --without-qt to configure. (Should fix bug #5074) QT2 is only needed to b... (diff) | |
download | historical-873a2159368f380db09ac65705d2f8b128e344b5.tar.gz historical-873a2159368f380db09ac65705d2f8b128e344b5.tar.bz2 historical-873a2159368f380db09ac65705d2f8b128e344b5.zip |
sandbox violation fix0rs
Diffstat (limited to 'x11-misc/ASFiles')
-rw-r--r-- | x11-misc/ASFiles/ASFiles-1.0.ebuild | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/x11-misc/ASFiles/ASFiles-1.0.ebuild b/x11-misc/ASFiles/ASFiles-1.0.ebuild index fc649d96a78f..e540adc0a871 100644 --- a/x11-misc/ASFiles/ASFiles-1.0.ebuild +++ b/x11-misc/ASFiles/ASFiles-1.0.ebuild @@ -1,43 +1,41 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ASFiles/ASFiles-1.0.ebuild,v 1.4 2002/07/11 06:30:57 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ASFiles/ASFiles-1.0.ebuild,v 1.5 2002/07/16 21:34:43 seemant Exp $ S=${WORKDIR}/${P} - DESCRIPTION="NeXTish filemanager, hacked from OffiX" - SRC_URI="http://www.tigr.net/afterstep/download/ASFiles/ASFiles-1.0.tar.gz" - HOMEPAGE="http://www.tigr.net/afterstep/list.pl" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" DEPEND=">=x11-wm/afterstep-1.8.8 - >=x11-libs/dnd-1.1" + >=x11-libs/dnd-1.1" src_unpack() { - unpack ASFiles-1.0.tar.gz - cd ${S} - patch -p0 < ${FILESDIR}/${PF}-gentoo.diff + unpack ASFiles-1.0.tar.gz + cd ${S} + patch -p0 < ${FILESDIR}/${PF}-gentoo.diff } + src_compile() { - ./configure --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - --prefix=/usr \ - --with-x \ - --with-dnd-inc=/usr/include/OffiX \ - --with-dnd-lib=/usr/lib \ - --host=${CHOST} || die - emake || die + econf \ + --with-x \ + --with-dnd-inc=/usr/include/OffiX \ + --with-dnd-lib=/usr/lib || die + emake || die } src_install () { - make prefix=${D}/usr install || die + make \ + prefix=${D}/usr \ + datadir=${D}/usr/share \ + mandir=${D}/usr/share/man \ + install || die -# make DESTDIR=${D} install || die } |