summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2007-02-18 20:22:46 +0000
committerDaniel Black <dragonheart@gentoo.org>2007-02-18 20:22:46 +0000
commit57adfbc39dc1d60faaecc7525522151d43db17a0 (patch)
tree4f761a026d31c978768cbce021f830d9cf63736b /app-admin/testdisk/testdisk-5.9.ebuild
parentStable on SPARC wrt bug #167198. (diff)
downloadhistorical-57adfbc39dc1d60faaecc7525522151d43db17a0.tar.gz
historical-57adfbc39dc1d60faaecc7525522151d43db17a0.tar.bz2
historical-57adfbc39dc1d60faaecc7525522151d43db17a0.zip
version bump thanks to author Christophe Grenier. old version cleanout too
Package-Manager: portage-2.1.2-r9
Diffstat (limited to 'app-admin/testdisk/testdisk-5.9.ebuild')
-rw-r--r--app-admin/testdisk/testdisk-5.9.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/app-admin/testdisk/testdisk-5.9.ebuild b/app-admin/testdisk/testdisk-5.9.ebuild
deleted file mode 100644
index 517f880479ff..000000000000
--- a/app-admin/testdisk/testdisk-5.9.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/testdisk-5.9.ebuild,v 1.3 2005/11/11 22:43:09 hansmi Exp $
-
-
-MY_P=${P}-WIP
-
-DESCRIPTION="Multi-platform tool to check and undelete partition, supports reiserfs, ntfs, fat32, ext2/3 and many others. Also includes PhotoRec to recover pictures from digital camera memory."
-HOMEPAGE="http://www.cgsecurity.org/index.html?testdisk.html"
-SRC_URI="http://www.cgsecurity.org/${MY_P}.tar.gz"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ppc x86"
-IUSE="static reiserfs ntfs"
-DEPEND=">=sys-libs/ncurses-5.2
- ntfs? ( >=sys-fs/ntfsprogs-1.9.4 )
- reiserfs? ( sys-fs/reiserfsprogs )
- >=sys-fs/e2fsprogs-1.35"
-RDEPEND="!static? ( ${DEPEND} )"
-
-S=${WORKDIR}/${MY_P}
-
-src_compile() {
- econf $(use_with ntfs) $(use_with reiserfs) || die
- if use static
- then
- emake smallstatic || die
- else
- emake || die
- fi
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- mv ${D}/usr/share/doc/${MY_P} ${D}/usr/share/doc/${PF}
- rm ${D}/usr/share/doc/${PF}/COPYING ${D}/usr/share/doc/${PF}/INSTALL
-}
-