summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-04-20 01:46:43 +0000
committerMike Frysinger <vapier@gentoo.org>2006-04-20 01:46:43 +0000
commit604ff83bdb61f36ebf553d74abfbd47e2d9e3057 (patch)
treef7de3abf0df4cdd5025d8e2bb64748baa3925b0e /sys-fs
parentold (diff)
downloadgentoo-2-604ff83bdb61f36ebf553d74abfbd47e2d9e3057.tar.gz
gentoo-2-604ff83bdb61f36ebf553d74abfbd47e2d9e3057.tar.bz2
gentoo-2-604ff83bdb61f36ebf553d74abfbd47e2d9e3057.zip
old
(Portage version: 2.1_pre9)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/xfsdump/files/digest-xfsdump-2.2.253
-rw-r--r--sys-fs/xfsdump/xfsdump-2.2.25.ebuild54
2 files changed, 0 insertions, 57 deletions
diff --git a/sys-fs/xfsdump/files/digest-xfsdump-2.2.25 b/sys-fs/xfsdump/files/digest-xfsdump-2.2.25
deleted file mode 100644
index eb13c23db3e3..000000000000
--- a/sys-fs/xfsdump/files/digest-xfsdump-2.2.25
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 62480f8575cad381eed542237c7f0ba3 xfsdump-2.2.25.src.tar.gz 589851
-RMD160 c07a3cec7c78617a5c8dfe809d729ad4328fe279 xfsdump-2.2.25.src.tar.gz 589851
-SHA256 a5a79bca2b61df8ddfd247aaec6705f5e78465a8d8675e22f73d583887075caf xfsdump-2.2.25.src.tar.gz 589851
diff --git a/sys-fs/xfsdump/xfsdump-2.2.25.ebuild b/sys-fs/xfsdump/xfsdump-2.2.25.ebuild
deleted file mode 100644
index 8ba23ce3c2b7..000000000000
--- a/sys-fs/xfsdump/xfsdump-2.2.25.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/xfsdump/xfsdump-2.2.25.ebuild,v 1.6 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-2.4.19"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- sed -i \
- -e "/^PKG_DOC_DIR/s:=.*:= /usr/share/doc/${PF}:" \
- -e '/^GCFLAGS/s:-O1::' \
- 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 DIST_ROOT=${D} install || die
- dosym /sbin/xfsrestore /usr/bin/xfsrestore
- dosym /sbin/xfsdump /usr/bin/xfsdump
-}