diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-03-07 18:44:37 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-03-07 18:44:37 +0000 |
commit | fabcb134452be9a8890616fc52457fed59c1b623 (patch) | |
tree | 7526d705cb7297d450c675fd6c522ba556a4b670 /sys-fs/ddrescue | |
parent | Remove old (diff) | |
download | gentoo-2-fabcb134452be9a8890616fc52457fed59c1b623.tar.gz gentoo-2-fabcb134452be9a8890616fc52457fed59c1b623.tar.bz2 gentoo-2-fabcb134452be9a8890616fc52457fed59c1b623.zip |
x86 stable, remove old, version bump wrt #211932
(Portage version: 2.1.4.4)
Diffstat (limited to 'sys-fs/ddrescue')
-rw-r--r-- | sys-fs/ddrescue/ChangeLog | 8 | ||||
-rw-r--r-- | sys-fs/ddrescue/ddrescue-1.6.ebuild | 6 | ||||
-rw-r--r-- | sys-fs/ddrescue/ddrescue-1.8.ebuild (renamed from sys-fs/ddrescue/ddrescue-1.5.ebuild) | 24 |
3 files changed, 24 insertions, 14 deletions
diff --git a/sys-fs/ddrescue/ChangeLog b/sys-fs/ddrescue/ChangeLog index 999d4715a342..0e43080c1d4e 100644 --- a/sys-fs/ddrescue/ChangeLog +++ b/sys-fs/ddrescue/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-fs/ddrescue # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.10 2008/01/14 18:17:04 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.11 2008/03/07 18:44:37 armin76 Exp $ + +*ddrescue-1.8 (07 Mar 2008) + + 07 Mar 2008; Raúl Porcel <armin76@gentoo.org> -ddrescue-1.5.ebuild, + ddrescue-1.6.ebuild, +ddrescue-1.8.ebuild: + x86 stable, remove old, version bump wrt #211932 14 Jan 2008; Raúl Porcel <armin76@gentoo.org> ddrescue-1.5.ebuild: x86 stable diff --git a/sys-fs/ddrescue/ddrescue-1.6.ebuild b/sys-fs/ddrescue/ddrescue-1.6.ebuild index a2964594ffcc..ee9993a4da67 100644 --- a/sys-fs/ddrescue/ddrescue-1.6.ebuild +++ b/sys-fs/ddrescue/ddrescue-1.6.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# 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.1 2007/12/15 16:57:30 vapier Exp $ +# $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 @@ -10,7 +10,7 @@ SRC_URI="http://savannah.gnu.org/download/ddrescue/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" +KEYWORDS="~amd64 ~ppc ~sparc x86" IUSE="" DEPEND="" diff --git a/sys-fs/ddrescue/ddrescue-1.5.ebuild b/sys-fs/ddrescue/ddrescue-1.8.ebuild index e366d3c57e36..3d677e240be2 100644 --- a/sys-fs/ddrescue/ddrescue-1.5.ebuild +++ b/sys-fs/ddrescue/ddrescue-1.8.ebuild @@ -1,6 +1,8 @@ # 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.5.ebuild,v 1.2 2008/01/14 18:17:04 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ddrescue-1.8.ebuild,v 1.1 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" @@ -8,24 +10,26 @@ SRC_URI="http://savannah.gnu.org/download/ddrescue/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc x86" +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" + ./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() { - make DESTDIR="${D}" install install-man || die "make install failed" + emake DESTDIR="${D}" install install-man || die "make install failed" dodoc ChangeLog INSTALL README NEWS AUTHORS TODO } |