diff options
author | 2007-09-20 07:14:35 +0000 | |
---|---|---|
committer | 2007-09-20 07:14:35 +0000 | |
commit | 8851e4f2886cc49f0a4c64dcf5319dfed966e86f (patch) | |
tree | 6ee6f91b9ee95f9ea1afe370b5c41bad8014ecad /sys-fs | |
parent | Version bump #192647 by Arfrever Frehtes Taifersar Arahesis. (diff) | |
download | gentoo-2-8851e4f2886cc49f0a4c64dcf5319dfed966e86f.tar.gz gentoo-2-8851e4f2886cc49f0a4c64dcf5319dfed966e86f.tar.bz2 gentoo-2-8851e4f2886cc49f0a4c64dcf5319dfed966e86f.zip |
Version bump #192647 by Arfrever Frehtes Taifersar Arahesis.
(Portage version: 2.1.3.9)
Diffstat (limited to 'sys-fs')
-rw-r--r-- | sys-fs/xfsdump/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/xfsdump/files/digest-xfsdump-2.2.46 | 3 | ||||
-rw-r--r-- | sys-fs/xfsdump/xfsdump-2.2.46.ebuild | 52 |
3 files changed, 61 insertions, 1 deletions
diff --git a/sys-fs/xfsdump/ChangeLog b/sys-fs/xfsdump/ChangeLog index 652ba641c294..534925558876 100644 --- a/sys-fs/xfsdump/ChangeLog +++ b/sys-fs/xfsdump/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/xfsdump # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/ChangeLog,v 1.54 2007/08/25 18:03:03 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/ChangeLog,v 1.55 2007/09/20 07:14:34 vapier Exp $ + +*xfsdump-2.2.46 (20 Sep 2007) + + 20 Sep 2007; Mike Frysinger <vapier@gentoo.org> +xfsdump-2.2.46.ebuild: + Version bump #192647 by Arfrever Frehtes Taifersar Arahesis. 25 Aug 2007; Mike Frysinger <vapier@gentoo.org> xfsdump-2.2.45.ebuild: Pull in gettext at build time #161179. diff --git a/sys-fs/xfsdump/files/digest-xfsdump-2.2.46 b/sys-fs/xfsdump/files/digest-xfsdump-2.2.46 new file mode 100644 index 000000000000..04a020a87bb6 --- /dev/null +++ b/sys-fs/xfsdump/files/digest-xfsdump-2.2.46 @@ -0,0 +1,3 @@ +MD5 c233a3f032d183d5bfa5dce210a08418 xfsdump_2.2.46-1.tar.gz 580996 +RMD160 4777b5b1007e1df0af6a6aa2e6b85ce55a41db7e xfsdump_2.2.46-1.tar.gz 580996 +SHA256 f2d600e126496120dd234e0a6a702bae177068d4dc2fccaf82be1521254a85cf xfsdump_2.2.46-1.tar.gz 580996 diff --git a/sys-fs/xfsdump/xfsdump-2.2.46.ebuild b/sys-fs/xfsdump/xfsdump-2.2.46.ebuild new file mode 100644 index 000000000000..617d62a00632 --- /dev/null +++ b/sys-fs/xfsdump/xfsdump-2.2.46.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/xfsdump-2.2.46.ebuild,v 1.1 2007/09/20 07:14:34 vapier Exp $ + +inherit eutils autotools + +MY_P="${PN}_${PV}-1" +DESCRIPTION="xfs dump/restore utilities" +HOMEPAGE="http://oss.sgi.com/projects/xfs" +SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 -sparc ~x86" +IUSE="" + +RDEPEND="sys-fs/e2fsprogs + sys-fs/xfsprogs + sys-apps/dmapi + >=sys-apps/attr-2.4.19" +DEPEND="${RDEPEND} + sys-devel/gettext" + +src_unpack() { + unpack ${A} + cd "${S}" + sed -i \ + -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \ + -e '/^GCFLAGS/s:-O1::' \ + include/builddefs.in \ + || die + epatch "${FILESDIR}"/${PN}-2.2.42-Makefile-deps.patch + eautoconf +} + +src_compile() { + unset PLATFORM #184564 + export OPTIMIZER=${CFLAGS} + export DEBUG=-DNDEBUG + + econf \ + --libdir=/$(get_libdir) \ + --libexecdir=/usr/$(get_libdir) \ + --sbindir=/sbin \ + || die + emake || die +} + +src_install() { + emake DIST_ROOT="${D}" install || die + prepalldocs +} |