summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2009-06-26 14:08:23 +0000
committerMike Frysinger <vapier@gentoo.org>2009-06-26 14:08:23 +0000
commit64a53341dcaf400100cd6ec8aa046a8cfacf7f69 (patch)
treeecdaa292bd3de7e707a6887acfbb2574cc624798 /sys-fs/xfsprogs
parentVersion bump (diff)
downloadhistorical-64a53341dcaf400100cd6ec8aa046a8cfacf7f69.tar.gz
historical-64a53341dcaf400100cd6ec8aa046a8cfacf7f69.tar.bz2
historical-64a53341dcaf400100cd6ec8aa046a8cfacf7f69.zip
old
Diffstat (limited to 'sys-fs/xfsprogs')
-rw-r--r--sys-fs/xfsprogs/xfsprogs-3.0.1.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/sys-fs/xfsprogs/xfsprogs-3.0.1.ebuild b/sys-fs/xfsprogs/xfsprogs-3.0.1.ebuild
deleted file mode 100644
index ad22095bd0d3..000000000000
--- a/sys-fs/xfsprogs/xfsprogs-3.0.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsprogs/xfsprogs-3.0.1.ebuild,v 1.1 2009/06/25 23:56:43 vapier Exp $
-
-inherit eutils toolchain-funcs multilib
-
-DESCRIPTION="xfs filesystem utilities"
-HOMEPAGE="http://oss.sgi.com/projects/xfs/"
-SRC_URI="ftp://oss.sgi.com/projects/xfs/cmd_tars/${P}.tar.gz
- ftp://oss.sgi.com/projects/xfs/previous/cmd_tars/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86"
-IUSE="nls static"
-
-RDEPEND="sys-fs/e2fsprogs
- !<sys-fs/xfsdump-3"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-sharedlibs.patch
- sed -i \
- -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
- include/builddefs.in \
- || die "sed include/builddefs.in failed"
- sed -i '1iLLDFLAGS = -static' {estimate,fsr}/Makefile
- sed -i \
- -e "/LLDFLAGS/s:-static:$(use static && echo -all-static):" \
- $(find -name Makefile)
-}
-
-src_compile() {
- export DEBUG=-DNDEBUG
- export OPTIMIZER=${CFLAGS}
- unset PLATFORM # if set in user env, this breaks configure
- econf \
- --bindir=/usr/bin \
- --sbindir=/sbin \
- --libexecdir=/usr/$(get_libdir) \
- $(use_enable nls gettext) \
- || die "config failed"
- emake || die
-}
-
-src_install() {
- emake DIST_ROOT="${D}" install install-dev || die "make install failed"
- gen_usr_ldscript -a disk handle xfs xlog
- prepalldocs
-}