diff options
author | Michael Weber <xmw@gentoo.org> | 2012-05-03 12:20:24 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2012-05-03 12:20:24 +0000 |
commit | 301a06db81e6c720d3551291cc462970701a4de3 (patch) | |
tree | 215bda43a3f96be1548544749993c61550fa8ae0 /sys-fs/ddrescue | |
parent | Version bump (diff) | |
download | gentoo-2-301a06db81e6c720d3551291cc462970701a4de3.tar.gz gentoo-2-301a06db81e6c720d3551291cc462970701a4de3.tar.bz2 gentoo-2-301a06db81e6c720d3551291cc462970701a4de3.zip |
Revbump to improve Prefix support (bug 414457)
(Portage version: 2.1.10.49/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/ddrescue')
-rw-r--r-- | sys-fs/ddrescue/ChangeLog | 7 | ||||
-rw-r--r-- | sys-fs/ddrescue/ddrescue-1.15-r1.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/sys-fs/ddrescue/ChangeLog b/sys-fs/ddrescue/ChangeLog index f571f4a53cdf..e522bc149ce3 100644 --- a/sys-fs/ddrescue/ChangeLog +++ b/sys-fs/ddrescue/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-fs/ddrescue # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.36 2012/05/03 09:38:49 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.37 2012/05/03 12:20:24 xmw Exp $ + +*ddrescue-1.15-r1 (03 May 2012) + + 03 May 2012; Michael Weber <xmw@gentoo.org> +ddrescue-1.15-r1.ebuild: + Revbump to improve Prefix support (bug 414457) 03 May 2012; Michael Weber <xmw@gentoo.org> ddrescue-1.15.ebuild: ppc stable (bug 413261) diff --git a/sys-fs/ddrescue/ddrescue-1.15-r1.ebuild b/sys-fs/ddrescue/ddrescue-1.15-r1.ebuild new file mode 100644 index 000000000000..509522e65768 --- /dev/null +++ b/sys-fs/ddrescue/ddrescue-1.15-r1.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.15-r1.ebuild,v 1.1 2012/05/03 12:20:24 xmw 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 +} |