summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Redaelli <drizzt@gentoo.org>2006-12-16 17:27:19 +0000
committerTimothy Redaelli <drizzt@gentoo.org>2006-12-16 17:27:19 +0000
commit846f277ee78bfc3da091d22017c67b3b087e2db6 (patch)
tree497d527ac1218f01465f6aa3b995ef31eab58ed2 /sys-fs/ddrescue/ddrescue-1.3.ebuild
parentVersion bump for 7.2. Build/dist fix only. (diff)
downloadgentoo-2-846f277ee78bfc3da091d22017c67b3b087e2db6.tar.gz
gentoo-2-846f277ee78bfc3da091d22017c67b3b087e2db6.tar.bz2
gentoo-2-846f277ee78bfc3da091d22017c67b3b087e2db6.zip
Version bump
(Portage version: 2.1.2_rc2-r4)
Diffstat (limited to 'sys-fs/ddrescue/ddrescue-1.3.ebuild')
-rw-r--r--sys-fs/ddrescue/ddrescue-1.3.ebuild31
1 files changed, 31 insertions, 0 deletions
diff --git a/sys-fs/ddrescue/ddrescue-1.3.ebuild b/sys-fs/ddrescue/ddrescue-1.3.ebuild
new file mode 100644
index 000000000000..56988240963d
--- /dev/null
+++ b/sys-fs/ddrescue/ddrescue-1.3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ddrescue-1.3.ebuild,v 1.1 2006/12/16 17:27:19 drizzt Exp $
+
+DESCRIPTION="Copies data from one file or block device (hard disk, cdrom, etc) to another, trying hard to rescue data in case of read errors"
+HOMEPAGE="http://www.gnu.org/software/ddrescue/ddrescue.html"
+SRC_URI="http://savannah.gnu.org/download/ddrescue/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=""
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ sed -i '/^CXXFLAGS/d' Makefile.in
+}
+
+src_compile() {
+ # not a normal configure script
+ ./configure --prefix=/usr || die "configure failed"
+ emake || die "emake failed"
+}
+
+src_install() {
+ make DESTDIR="${D}" install install-man || die "make install failed"
+ dodoc ChangeLog INSTALL README NEWS AUTHORS TODO
+}