summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2007-08-14 11:50:09 +0000
committerDaniel Black <dragonheart@gentoo.org>2007-08-14 11:50:09 +0000
commit72a890417ab7506ebd6205c5dd06c950bb6ed02b (patch)
tree5e0f3a1dc56a160d3624c2eef2619e12b11ffc6a /app-admin
parentalpha/ia64/x86 stable wrt #178320 (diff)
downloadgentoo-2-72a890417ab7506ebd6205c5dd06c950bb6ed02b.tar.gz
gentoo-2-72a890417ab7506ebd6205c5dd06c950bb6ed02b.tar.bz2
gentoo-2-72a890417ab7506ebd6205c5dd06c950bb6ed02b.zip
version bump thanks to email from author
(Portage version: 2.1.2.11)
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/testdisk/ChangeLog8
-rw-r--r--app-admin/testdisk/files/digest-testdisk-6.73
-rw-r--r--app-admin/testdisk/files/digest-testdisk-6.83
-rw-r--r--app-admin/testdisk/testdisk-6.8.ebuild (renamed from app-admin/testdisk/testdisk-6.7.ebuild)17
4 files changed, 16 insertions, 15 deletions
diff --git a/app-admin/testdisk/ChangeLog b/app-admin/testdisk/ChangeLog
index 8e84448232e8..8f55cb0f3d2c 100644
--- a/app-admin/testdisk/ChangeLog
+++ b/app-admin/testdisk/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-admin/testdisk
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/ChangeLog,v 1.25 2007/08/03 03:49:37 robbat2 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/ChangeLog,v 1.26 2007/08/14 11:50:09 dragonheart Exp $
+
+*testdisk-6.8 (14 Aug 2007)
+
+ 14 Aug 2007; Daniel Black <dragonheart@gentoo.org> -testdisk-6.7.ebuild,
+ +testdisk-6.8.ebuild:
+ version bump thanks to email from author
*testdisk-6.7-r1 (02 Aug 2007)
diff --git a/app-admin/testdisk/files/digest-testdisk-6.7 b/app-admin/testdisk/files/digest-testdisk-6.7
deleted file mode 100644
index 8ac9bbde575b..000000000000
--- a/app-admin/testdisk/files/digest-testdisk-6.7
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 cf5f633dbbeadfff0c38d39e1fa56b5e testdisk-6.7.tar.bz2 762396
-RMD160 5514ad8ef2dec793cc130916a4e6e62426d6bb24 testdisk-6.7.tar.bz2 762396
-SHA256 dd3acc1f17414e37f8e6ef71736f17cb69b98d5f84863973753edc19bc644bc8 testdisk-6.7.tar.bz2 762396
diff --git a/app-admin/testdisk/files/digest-testdisk-6.8 b/app-admin/testdisk/files/digest-testdisk-6.8
new file mode 100644
index 000000000000..7b1e78129636
--- /dev/null
+++ b/app-admin/testdisk/files/digest-testdisk-6.8
@@ -0,0 +1,3 @@
+MD5 bebd1e2be47fbc451878f32497a7f935 testdisk-6.8.tar.bz2 768698
+RMD160 e9fd360e126cbce21c3a17711ea02dc33206cceb testdisk-6.8.tar.bz2 768698
+SHA256 390a8c9d537105b8839e7dec60873b59c0a971f31be539c331f29be8d98cd833 testdisk-6.8.tar.bz2 768698
diff --git a/app-admin/testdisk/testdisk-6.7.ebuild b/app-admin/testdisk/testdisk-6.8.ebuild
index 3db90a1ff46b..761201d1480c 100644
--- a/app-admin/testdisk/testdisk-6.7.ebuild
+++ b/app-admin/testdisk/testdisk-6.8.ebuild
@@ -1,8 +1,8 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/testdisk-6.7.ebuild,v 1.2 2007/07/13 06:07:38 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/testdisk/testdisk-6.8.ebuild,v 1.1 2007/08/14 11:50:09 dragonheart Exp $
-inherit eutils
+inherit eutils flag-o-matic
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/wiki/TestDisk"
@@ -20,11 +20,6 @@ DEPEND=">=sys-libs/ncurses-5.2
>=sys-fs/e2fsprogs-1.35"
RDEPEND="!static? ( ${DEPEND} )"
-src_unpack() {
- unpack ${A}
- epatch "${FILESDIR}"/${P}-constdef.patch
-}
-
src_compile() {
local myconf="--without-ewf"
# --with-foo are broken, any use of --with/--without disable the
@@ -34,6 +29,10 @@ src_compile() {
use ntfs || myconf="${myconf} --without-ntfs"
use jpeg || myconf="${myconf} --without-jpeg"
+ # this is static method is the same used by upstream for their 'static' make
+ # target, but better, as it doesn't break.
+ use static && append-ldflags -static
+
econf ${myconf} || die
# perform safety checks for NTFS and REISERFS
@@ -47,10 +46,6 @@ src_compile() {
die "Failed to find jpeg library."
fi
- # this is static method is the same used by upstream for their 'static' make
- # target, but better, as it doesn't break.
- use static && append-ldflags -static
-
emake || die
}