summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-09-02 23:01:18 +0000
committerMike Frysinger <vapier@gentoo.org>2005-09-02 23:01:18 +0000
commit804873d6dfe3bce08294f70c2d117079448da0fe (patch)
tree4a73dd30daf4f02bec9ddc1363c24a363f47caa0 /sys-fs/xfsdump
parentAdded license file for Intel Fortran Compiler 9.0. (diff)
downloadgentoo-2-804873d6dfe3bce08294f70c2d117079448da0fe.tar.gz
gentoo-2-804873d6dfe3bce08294f70c2d117079448da0fe.tar.bz2
gentoo-2-804873d6dfe3bce08294f70c2d117079448da0fe.zip
old
Diffstat (limited to 'sys-fs/xfsdump')
-rw-r--r--sys-fs/xfsdump/files/digest-xfsdump-2.2.241
-rw-r--r--sys-fs/xfsdump/xfsdump-2.2.24.ebuild55
2 files changed, 0 insertions, 56 deletions
diff --git a/sys-fs/xfsdump/files/digest-xfsdump-2.2.24 b/sys-fs/xfsdump/files/digest-xfsdump-2.2.24
deleted file mode 100644
index 379259d3702f..000000000000
--- a/sys-fs/xfsdump/files/digest-xfsdump-2.2.24
+++ /dev/null
@@ -1 +0,0 @@
-MD5 4933f0a2c9c32ae97070b0e48b855df6 xfsdump-2.2.24.src.tar.gz 589786
diff --git a/sys-fs/xfsdump/xfsdump-2.2.24.ebuild b/sys-fs/xfsdump/xfsdump-2.2.24.ebuild
deleted file mode 100644
index 5e513ef58313..000000000000
--- a/sys-fs/xfsdump/xfsdump-2.2.24.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/xfsdump-2.2.24.ebuild,v 1.4 2005/07/10 19:14:21 agriffis Exp $
-
-inherit eutils
-
-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="~alpha amd64 ia64 ~mips ~ppc -sparc x86"
-IUSE="debug"
-
-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() {
- if use debug; then
- export DEBUG=-DDEBUG
- else
- export DEBUG=-DNDEBUG
- fi
- export OPTIMIZER="${CFLAGS}"
-
- # Some archs need the PLATFORM var unset
- unset PLATFORM
-
- econf \
- --libdir=/$(get_libdir) \
- --libexecdir=/usr/$(get_libdir) \
- --sbindir=/sbin \
- || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dosym ../../sbin/xfsrestore /usr/bin/xfsrestore
- dosym ../../sbin/xfsdump /usr/bin/xfsdump
-}