summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-08-17 13:14:59 +0000
committerMike Frysinger <vapier@gentoo.org>2010-08-17 13:14:59 +0000
commit40b2c47313f9b305449fddacf8f11d1112a2dac8 (patch)
treedf69678b4e1a44e4a0b506274777cd8096785338 /sys-fs/xfsprogs/xfsprogs-3.0.0.ebuild
parentBump to 0.3.0. Some API updates, new tool to list profiles, more supported pr... (diff)
downloadhistorical-40b2c47313f9b305449fddacf8f11d1112a2dac8.tar.gz
historical-40b2c47313f9b305449fddacf8f11d1112a2dac8.tar.bz2
historical-40b2c47313f9b305449fddacf8f11d1112a2dac8.zip
Clean up library install and prefer readline over editline like upstream #311109.
Package-Manager: portage-2.2_rc67/cvs/Linux x86_64
Diffstat (limited to 'sys-fs/xfsprogs/xfsprogs-3.0.0.ebuild')
-rw-r--r--sys-fs/xfsprogs/xfsprogs-3.0.0.ebuild50
1 files changed, 0 insertions, 50 deletions
diff --git a/sys-fs/xfsprogs/xfsprogs-3.0.0.ebuild b/sys-fs/xfsprogs/xfsprogs-3.0.0.ebuild
deleted file mode 100644
index 5388bdadfb69..000000000000
--- a/sys-fs/xfsprogs/xfsprogs-3.0.0.ebuild
+++ /dev/null
@@ -1,50 +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.0.ebuild,v 1.4 2009/02/24 05:11:32 vapier Exp $
-
-inherit eutils toolchain-funcs autotools
-
-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"
-
-RDEPEND="sys-fs/e2fsprogs
- !<sys-fs/xfsdump-3"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-parallel-build.patch #260005
- sed -i \
- -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
- include/builddefs.in \
- || die "sed include/builddefs.in failed"
- eautoconf
-}
-
-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 handle
- prepalldocs
-}