diff options
Diffstat (limited to 'sys-fs/ddrescue/ddrescue-1.6.ebuild')
-rw-r--r-- | sys-fs/ddrescue/ddrescue-1.6.ebuild | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/sys-fs/ddrescue/ddrescue-1.6.ebuild b/sys-fs/ddrescue/ddrescue-1.6.ebuild deleted file mode 100644 index ee9993a4da67..000000000000 --- a/sys-fs/ddrescue/ddrescue-1.6.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ddrescue-1.6.ebuild,v 1.2 2008/03/07 18:44:37 armin76 Exp $ - -inherit toolchain-funcs - -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_compile() { - # not a normal configure script - ./configure \ - --prefix=/usr \ - CC="$(tc-getCC)" \ - CXX="$(tc-getCXX)" \ - CPPFLAGS="${CPPFLAGS}" \ - CFLAGS="${CFLAGS}" \ - CXXFLAGS="${CXXFLAGS}" \ - LDFLAGS="${LDFLAGS}" \ - || die "configure failed" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install install-man || die "make install failed" - dodoc ChangeLog INSTALL README NEWS AUTHORS TODO -} |