diff options
Diffstat (limited to 'sys-fs/ddrescue/ddrescue-1.16.ebuild')
-rw-r--r-- | sys-fs/ddrescue/ddrescue-1.16.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/sys-fs/ddrescue/ddrescue-1.16.ebuild b/sys-fs/ddrescue/ddrescue-1.16.ebuild new file mode 100644 index 000000000000..efe9a703abf1 --- /dev/null +++ b/sys-fs/ddrescue/ddrescue-1.16.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ddrescue-1.16.ebuild,v 1.1 2012/06/19 09:42:54 polynomial-c Exp $ + +EAPI=4 + +inherit toolchain-funcs + +DESCRIPTION="Copies data from one file or block device to another with read-error recovery" +HOMEPAGE="http://www.gnu.org/software/ddrescue/ddrescue.html" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux" +IUSE="" + +DEPEND="" +RDEPEND="" + +src_configure() { + # not a normal configure script + econf \ + --prefix="${EPREFIX}"/usr \ + CC="$(tc-getCC)" \ + CXX="$(tc-getCXX)" \ + CPPFLAGS="${CPPFLAGS}" \ + CFLAGS="${CFLAGS}" \ + CXXFLAGS="${CXXFLAGS}" \ + LDFLAGS="${LDFLAGS}" +} + +src_test() { + ./testsuite/check.sh "${S}"/testsuite || die +} + +src_install() { + emake DESTDIR="${D}" install install-man + dodoc ChangeLog README NEWS AUTHORS +} |