diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2001-11-17 07:35:22 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2001-11-17 07:35:22 +0000 |
commit | f83fb0f9ddd25528b70cfc4871a80205535287b4 (patch) | |
tree | 44aa293b0fd00a46db53438b12b1f92b64cbe0e7 /sys-apps/xfsprogs | |
parent | clean out old kernel stuff (diff) | |
download | gentoo-2-f83fb0f9ddd25528b70cfc4871a80205535287b4.tar.gz gentoo-2-f83fb0f9ddd25528b70cfc4871a80205535287b4.tar.bz2 gentoo-2-f83fb0f9ddd25528b70cfc4871a80205535287b4.zip |
new stuffs :)
Diffstat (limited to 'sys-apps/xfsprogs')
-rw-r--r-- | sys-apps/xfsprogs/xfsprogs-1.3.13.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/sys-apps/xfsprogs/xfsprogs-1.3.13.ebuild b/sys-apps/xfsprogs/xfsprogs-1.3.13.ebuild new file mode 100644 index 000000000000..8b00d2475813 --- /dev/null +++ b/sys-apps/xfsprogs/xfsprogs-1.3.13.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: System Team <system@gentoo.org> +# Author: Daniel Robbins <drobbins@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/xfsprogs/xfsprogs-1.3.13.ebuild,v 1.1 2001/11/17 07:35:22 drobbins Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="xfs filesystem utilities" +SRC_URI="ftp://oss.sgi.com/projects/xfs/download/latest/cmd_tars/${P}.src.tar.gz" +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 + # 1) add a ${DESTDIR} prefix to all install paths so we can relocate during the "install" phase + # 2) we also set the /usr/share/doc/ directory to the correct value. + # 3) we remove a hard-coded "-O1" + cp include/builddefs include/builddefs.orig + sed -e 's:^PKG_\(.*\)_DIR = \(.*\)$:PKG_\1_DIR = ${DESTDIR}\2:' -e "s:/usr/share/doc/xfsprogs:/usr/share/doc/${PF}:" -e 's:-O1::' include/builddefs.orig > include/builddefs || die + make || die +} + +src_install() { + make DESTDIR=${D} install || die +} |