diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2002-01-24 23:49:08 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2002-01-24 23:49:08 +0000 |
commit | 15bb8996b05d5a01c1be89e2bdaa373d9663d2ad (patch) | |
tree | 3b517a4c9751614d304221f15607afca9170e87a /sys-apps/xfsprogs | |
parent | don't use DESTDIR, it violates sandbox, fixes #319 (diff) | |
download | gentoo-2-15bb8996b05d5a01c1be89e2bdaa373d9663d2ad.tar.gz gentoo-2-15bb8996b05d5a01c1be89e2bdaa373d9663d2ad.tar.bz2 gentoo-2-15bb8996b05d5a01c1be89e2bdaa373d9663d2ad.zip |
fix
Diffstat (limited to 'sys-apps/xfsprogs')
-rw-r--r-- | sys-apps/xfsprogs/files/digest-xfsprogs-20020124-r2 | 1 | ||||
-rw-r--r-- | sys-apps/xfsprogs/xfsprogs-20020124-r2.ebuild (renamed from sys-apps/xfsprogs/xfsprogs-20020124-r1.ebuild) | 10 | ||||
-rw-r--r-- | sys-apps/xfsprogs/xfsprogs-20020124.ebuild | 32 |
3 files changed, 6 insertions, 37 deletions
diff --git a/sys-apps/xfsprogs/files/digest-xfsprogs-20020124-r2 b/sys-apps/xfsprogs/files/digest-xfsprogs-20020124-r2 new file mode 100644 index 000000000000..432516f563a9 --- /dev/null +++ b/sys-apps/xfsprogs/files/digest-xfsprogs-20020124-r2 @@ -0,0 +1 @@ +MD5 3b538a21f9d98f0cf7ab1ddde9086623 xfs-cmd-20020124.tar.bz2 1564672 diff --git a/sys-apps/xfsprogs/xfsprogs-20020124-r1.ebuild b/sys-apps/xfsprogs/xfsprogs-20020124-r2.ebuild index fdc77dfaf91e..6b7d893bd740 100644 --- a/sys-apps/xfsprogs/xfsprogs-20020124-r1.ebuild +++ b/sys-apps/xfsprogs/xfsprogs-20020124-r2.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xfsprogs/xfsprogs-20020124-r1.ebuild,v 1.1 2002/01/24 23:13:01 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xfsprogs/xfsprogs-20020124-r2.ebuild,v 1.1 2002/01/24 23:49:08 drobbins Exp $ S=${WORKDIR}/cmd/${PN} DESCRIPTION="xfs filesystem utilities" @@ -22,11 +22,11 @@ src_compile() { src_install() { make DESTDIR=${D} DK_INC_DIR=${D}/usr/include/disk install install-dev || die - dodir /usr/lib - cd ${D}/lib + dodir /lib + cd ${D}/usr/lib local x - for x in * + for x in libhandle* do - ln -s ../../${x} ${D}/usr/lib/${x} + ln -s ../usr/lib/${x} ${D}/lib/${x} done } diff --git a/sys-apps/xfsprogs/xfsprogs-20020124.ebuild b/sys-apps/xfsprogs/xfsprogs-20020124.ebuild deleted file mode 100644 index a46707e20fe1..000000000000 --- a/sys-apps/xfsprogs/xfsprogs-20020124.ebuild +++ /dev/null @@ -1,32 +0,0 @@ -# Copyright 1999-2002 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# Maintainer: Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/xfsprogs/xfsprogs-20020124.ebuild,v 1.2 2002/01/24 23:13:01 drobbins Exp $ - -S=${WORKDIR}/cmd/${PN} -DESCRIPTION="xfs filesystem utilities" -SRC_URI="http://www.ibiblio.org/gentoo/distfiles/xfs-cmd-${PV}.tar.bz2" -HOMEPAGE="http://oss.sgi.com/projects/xfs" - -DEPEND="virtual/glibc sys-devel/autoconf sys-devel/make sys-apps/e2fsprogs" -RDEPEND="virtual/glibc" - -src_compile() { - cd ${S} - export OPTIMIZER="${CFLAGS}" - export DEBUG=-DNDEBUG - autoconf || die - ./configure --prefix=/usr || die - emake || die -} - -src_install() { - make DESTDIR=${D} DK_INC_DIR=${D}/usr/include/disk install install-dev || die - dodir /usr/lib - cd ${D}/lib - local x - for x in * - do - ln -s ../../${x} ${D}/usr/lib/${x} - done -} |