summaryrefslogtreecommitdiff
path: root/sys-fs
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2012-06-19 09:42:54 +0000
committerLars Wendler <polynomial-c@gentoo.org>2012-06-19 09:42:54 +0000
commitb1e25fe7135736fb15ab30fdf99bdd593d05a7ae (patch)
tree625bafc9288cf1be1d3fa1130d37e424bb7f124e /sys-fs
parentCompleted list of translations. (diff)
downloadgentoo-2-b1e25fe7135736fb15ab30fdf99bdd593d05a7ae.tar.gz
gentoo-2-b1e25fe7135736fb15ab30fdf99bdd593d05a7ae.tar.bz2
gentoo-2-b1e25fe7135736fb15ab30fdf99bdd593d05a7ae.zip
Version bump. Removed old
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs')
-rw-r--r--sys-fs/ddrescue/ChangeLog8
-rw-r--r--sys-fs/ddrescue/ddrescue-1.16.ebuild (renamed from sys-fs/ddrescue/ddrescue-1.14.ebuild)20
2 files changed, 17 insertions, 11 deletions
diff --git a/sys-fs/ddrescue/ChangeLog b/sys-fs/ddrescue/ChangeLog
index e522bc149ce3..761f4961ba69 100644
--- a/sys-fs/ddrescue/ChangeLog
+++ b/sys-fs/ddrescue/ChangeLog
@@ -1,6 +1,12 @@
# 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.37 2012/05/03 12:20:24 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.38 2012/06/19 09:42:54 polynomial-c Exp $
+
+*ddrescue-1.16 (19 Jun 2012)
+
+ 19 Jun 2012; Lars Wendler <polynomial-c@gentoo.org> -ddrescue-1.14.ebuild,
+ +ddrescue-1.16.ebuild:
+ Version bump. Removed old.
*ddrescue-1.15-r1 (03 May 2012)
diff --git a/sys-fs/ddrescue/ddrescue-1.14.ebuild b/sys-fs/ddrescue/ddrescue-1.16.ebuild
index eba66393fb3b..efe9a703abf1 100644
--- a/sys-fs/ddrescue/ddrescue-1.14.ebuild
+++ b/sys-fs/ddrescue/ddrescue-1.16.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2011 Gentoo Foundation
+# 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.14.ebuild,v 1.4 2011/07/26 21:12:46 maekke Exp $
+# $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
@@ -10,24 +12,22 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ppc ~sparc x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-linux"
IUSE=""
DEPEND=""
RDEPEND=""
-src_compile() {
+src_configure() {
# not a normal configure script
- ./configure \
- --prefix=/usr \
+ econf \
+ --prefix="${EPREFIX}"/usr \
CC="$(tc-getCC)" \
CXX="$(tc-getCXX)" \
CPPFLAGS="${CPPFLAGS}" \
CFLAGS="${CFLAGS}" \
CXXFLAGS="${CXXFLAGS}" \
- LDFLAGS="${LDFLAGS}" \
- || die "configure failed"
- emake || die "emake failed"
+ LDFLAGS="${LDFLAGS}"
}
src_test() {
@@ -35,6 +35,6 @@ src_test() {
}
src_install() {
- emake DESTDIR="${D}" install install-man || die "make install failed"
+ emake DESTDIR="${D}" install install-man
dodoc ChangeLog README NEWS AUTHORS
}