diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2004-04-24 20:14:37 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2004-04-24 20:14:37 +0000 |
commit | 543114098b3f391a625d64e1433048c651a3e08a (patch) | |
tree | efe8da801e180a25647f711bb571550229af8eff /app-admin/testdisk | |
parent | marked lam-mpi-7.0.4 stable on ppc64 (diff) | |
download | historical-543114098b3f391a625d64e1433048c651a3e08a.tar.gz historical-543114098b3f391a625d64e1433048c651a3e08a.tar.bz2 historical-543114098b3f391a625d64e1433048c651a3e08a.zip |
Initial ebuild submitted by Sebastian B. Otaegui <sotaegui@itba.edu.ar>, bug #47278.
Diffstat (limited to 'app-admin/testdisk')
-rw-r--r-- | app-admin/testdisk/ChangeLog | 10 | ||||
-rw-r--r-- | app-admin/testdisk/Manifest | 3 | ||||
-rw-r--r-- | app-admin/testdisk/files/digest-testdisk-5.2 | 1 | ||||
-rw-r--r-- | app-admin/testdisk/testdisk-5.2.ebuild | 29 |
4 files changed, 43 insertions, 0 deletions
diff --git a/app-admin/testdisk/ChangeLog b/app-admin/testdisk/ChangeLog new file mode 100644 index 000000000000..887ed8f68212 --- /dev/null +++ b/app-admin/testdisk/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for app-admin/testdisk +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/ChangeLog,v 1.1 2004/04/24 20:14:37 robbat2 Exp $ + +*testdisk-5.2 (24 Apr 2004) + + 24 Apr 2004; Robin H. Johnson <robbat2@gentoo.org> testdisk-5.2.ebuild: + Initial ebuild submitted by Sebastian B. Otaegui <sotaegui@itba.edu.ar>, bug + #47278. + diff --git a/app-admin/testdisk/Manifest b/app-admin/testdisk/Manifest new file mode 100644 index 000000000000..9a9f3693b838 --- /dev/null +++ b/app-admin/testdisk/Manifest @@ -0,0 +1,3 @@ +MD5 c10e6375388dabdb259a0bbf20b02e40 testdisk-5.2.ebuild 852 +MD5 9c34e344a9c126665bd552c731aff96a ChangeLog 411 +MD5 c20ec4c0b429ad420cd79fa49b334e24 files/digest-testdisk-5.2 64 diff --git a/app-admin/testdisk/files/digest-testdisk-5.2 b/app-admin/testdisk/files/digest-testdisk-5.2 new file mode 100644 index 000000000000..75a3873f7c67 --- /dev/null +++ b/app-admin/testdisk/files/digest-testdisk-5.2 @@ -0,0 +1 @@ +MD5 f31ee06d2040e1d610a5891b57a86f65 testdisk-5.2.tar.gz 458451 diff --git a/app-admin/testdisk/testdisk-5.2.ebuild b/app-admin/testdisk/testdisk-5.2.ebuild new file mode 100644 index 000000000000..06ba7b0c7da9 --- /dev/null +++ b/app-admin/testdisk/testdisk-5.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/testdisk-5.2.ebuild,v 1.1 2004/04/24 20:14:37 robbat2 Exp $ + +DESCRIPTION="Multi-platform tool to check and undelete partition, supports reiserfs, ntfs, fat32, ext2/3 and many others" +HOMEPAGE="http://www.cgsecurity.org/index.html?testdisk.html" +SRC_URI="http://www.cgsecurity.org/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND=">=sys-fs/ntfsprogs-1.9.0 + >=sys-fs/reiserfsprogs-3.6.13 + >=sys-fs/e2fsprogs-1.35" + +src_compile() { + econf || die + emake || die + mv src/testdisk src/testdisk.dynamic + emake smallstatic || die + mv src/testdisk src/testdisk.static + cp src/testdisk.dynamic src/testdisk +} + +src_install() { + einstall || die + dosbin src/testdisk.static +} + |