summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <fauli@gentoo.org>2009-07-08 22:02:45 +0000
committerChristian Faulhammer <fauli@gentoo.org>2009-07-08 22:02:45 +0000
commit52bd80853de3a7c9c8b40a7e02fa52ac36e80bbb (patch)
tree601a4e0e5974c48fff99ddab8295a7620298bdda
parentRename EXTRA_ECONF to EXTRA_FFMPEG_CONF because this package isn't using econ... (diff)
downloadgentoo-2-52bd80853de3a7c9c8b40a7e02fa52ac36e80bbb.tar.gz
gentoo-2-52bd80853de3a7c9c8b40a7e02fa52ac36e80bbb.tar.bz2
gentoo-2-52bd80853de3a7c9c8b40a7e02fa52ac36e80bbb.zip
clean up
(Portage version: 2.1.6.13/cvs/Linux i686)
-rw-r--r--sys-fs/ddrescue/ChangeLog5
-rw-r--r--sys-fs/ddrescue/ddrescue-1.8.ebuild35
2 files changed, 4 insertions, 36 deletions
diff --git a/sys-fs/ddrescue/ChangeLog b/sys-fs/ddrescue/ChangeLog
index 5e2235b2d13e..eef4f4d884a3 100644
--- a/sys-fs/ddrescue/ChangeLog
+++ b/sys-fs/ddrescue/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-fs/ddrescue
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.16 2009/07/08 21:24:49 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ChangeLog,v 1.17 2009/07/08 22:02:45 fauli Exp $
+
+ 08 Jul 2009; Christian Faulhammer <fauli@gentoo.org> -ddrescue-1.8.ebuild:
+ clean up
08 Jul 2009; Markus Meier <maekke@gentoo.org> ddrescue-1.9.ebuild:
amd64 stable, bug #275491
diff --git a/sys-fs/ddrescue/ddrescue-1.8.ebuild b/sys-fs/ddrescue/ddrescue-1.8.ebuild
deleted file mode 100644
index 53425698f3df..000000000000
--- a/sys-fs/ddrescue/ddrescue-1.8.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/ddrescue/ddrescue-1.8.ebuild,v 1.3 2009/01/11 19:14:50 maekke 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
-}