summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-02-11 06:47:01 +0000
committerMike Frysinger <vapier@gentoo.org>2004-02-11 06:47:01 +0000
commit9d0425be8d2682e857ca296d5aa18737fe854247 (patch)
tree49078f49b3f4ea11da1539dd3dfa30fa766a31ec /sys-fs/xfsdump
parentold (diff)
downloadgentoo-2-9d0425be8d2682e857ca296d5aa18737fe854247.tar.gz
gentoo-2-9d0425be8d2682e857ca296d5aa18737fe854247.tar.bz2
gentoo-2-9d0425be8d2682e857ca296d5aa18737fe854247.zip
ver bump
Diffstat (limited to 'sys-fs/xfsdump')
-rw-r--r--sys-fs/xfsdump/ChangeLog7
-rw-r--r--sys-fs/xfsdump/files/digest-xfsdump-2.2.161
-rw-r--r--sys-fs/xfsdump/xfsdump-2.2.16.ebuild47
3 files changed, 54 insertions, 1 deletions
diff --git a/sys-fs/xfsdump/ChangeLog b/sys-fs/xfsdump/ChangeLog
index 01b99ef1bc18..ce441c2cae32 100644
--- a/sys-fs/xfsdump/ChangeLog
+++ b/sys-fs/xfsdump/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for sys-fs/xfsdump
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/ChangeLog,v 1.5 2004/01/16 23:08:32 darkspecter Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/ChangeLog,v 1.6 2004/02/11 06:47:00 vapier Exp $
+
+*xfsdump-2.2.16 (11 Feb 2004)
+
+ 11 Feb 2004; Mike Frysinger <vapier@gentoo.org> :
+ Version bump #19406
17 Jan 2004; Bartosch Pixa <darkspecter@gentoo.org> :
manifest fix
diff --git a/sys-fs/xfsdump/files/digest-xfsdump-2.2.16 b/sys-fs/xfsdump/files/digest-xfsdump-2.2.16
new file mode 100644
index 000000000000..435fd2d369c9
--- /dev/null
+++ b/sys-fs/xfsdump/files/digest-xfsdump-2.2.16
@@ -0,0 +1 @@
+MD5 1f18386b64d34bf330c3c739f219c060 xfsdump-2.2.16.src.tar.gz 584832
diff --git a/sys-fs/xfsdump/xfsdump-2.2.16.ebuild b/sys-fs/xfsdump/xfsdump-2.2.16.ebuild
new file mode 100644
index 000000000000..bbe80b67da60
--- /dev/null
+++ b/sys-fs/xfsdump/xfsdump-2.2.16.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2004 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/xfsdump-2.2.16.ebuild,v 1.1 2004/02/11 06:47:01 vapier Exp $
+
+DESCRIPTION="xfs dump/restore utilities"
+HOMEPAGE="http://oss.sgi.com/projects/xfs"
+SRC_URI="ftp://oss.sgi.com/projects/xfs/download/cmd_tars/${P}.src.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~mips ~amd64 ~ia64"
+
+DEPEND="sys-fs/e2fsprogs
+ sys-fs/xfsprogs
+ sys-apps/dmapi
+ sys-apps/attr"
+
+src_unpack() {
+ unpack ${A}
+ cd ${S}
+ sed -i \
+ -e "/^PKG_DOC_DIR/s:=.*:= /usr/share/doc/${PF}:" \
+ -e '/^GCFLAGS/s:-O1::' \
+ -e '/^PKG_[A-Z]*_DIR/s:= := $(DESTDIR):' \
+ include/builddefs.in \
+ || die
+}
+
+src_compile() {
+ export OPTIMIZER="${CFLAGS}"
+ export DEBUG=-DNDEBUG
+
+ econf \
+ --libdir=/lib \
+ --sbindir=/sbin \
+ --libexecdir=/usr/lib \
+ || die
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ rm -f ${D}/usr/bin/xfsrestore
+ rm -f ${D}/usr/bin/xfsdump
+ dosym /sbin/xfsrestore /usr/bin/xfsrestore
+ dosym /sbin/xfsdump /usr/bin/xfsdump
+}