diff options
author | 2012-02-04 18:09:54 +0000 | |
---|---|---|
committer | 2012-02-04 18:09:54 +0000 | |
commit | 83af9d157dd81803bf69ea484464e6ae0d6a1341 (patch) | |
tree | b867ea7ba948841b318a796d6e5bb61ca2347081 /sys-fs/dd-rescue | |
parent | Version bump. (diff) | |
download | gentoo-2-83af9d157dd81803bf69ea484464e6ae0d6a1341.tar.gz gentoo-2-83af9d157dd81803bf69ea484464e6ae0d6a1341.tar.bz2 gentoo-2-83af9d157dd81803bf69ea484464e6ae0d6a1341.zip |
Remove old.
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'sys-fs/dd-rescue')
-rw-r--r-- | sys-fs/dd-rescue/ChangeLog | 6 | ||||
-rw-r--r-- | sys-fs/dd-rescue/dd-rescue-1.14-r1.ebuild | 34 | ||||
-rw-r--r-- | sys-fs/dd-rescue/dd-rescue-1.23.ebuild | 45 |
3 files changed, 5 insertions, 80 deletions
diff --git a/sys-fs/dd-rescue/ChangeLog b/sys-fs/dd-rescue/ChangeLog index 4c3c42e752aa..b18dd9ae0c16 100644 --- a/sys-fs/dd-rescue/ChangeLog +++ b/sys-fs/dd-rescue/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-fs/dd-rescue # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/ChangeLog,v 1.19 2012/02/04 18:08:59 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/ChangeLog,v 1.20 2012/02/04 18:09:54 radhermit Exp $ + + 04 Feb 2012; Tim Harder <radhermit@gentoo.org> -dd-rescue-1.14-r1.ebuild, + -dd-rescue-1.23.ebuild: + Remove old. *dd-rescue-1.25 (04 Feb 2012) diff --git a/sys-fs/dd-rescue/dd-rescue-1.14-r1.ebuild b/sys-fs/dd-rescue/dd-rescue-1.14-r1.ebuild deleted file mode 100644 index b136565d2d08..000000000000 --- a/sys-fs/dd-rescue/dd-rescue-1.14-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.14-r1.ebuild,v 1.1 2010/10/17 14:28:41 chainsaw Exp $ - -EAPI=3 - -inherit base - -MY_PN=${PN/-/_} -MY_P=${MY_PN}-${PV} -DESCRIPTION="similar to dd but can copy from source with errors" -HOMEPAGE="http://www.garloff.de/kurt/linux/ddrescue/" -SRC_URI="http://www.garloff.de/kurt/linux/ddrescue/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86 ~arm" -IUSE="static" - -RDEPEND="" -DEPEND="" - -S=${WORKDIR}/${MY_PN} -PATCHES=( "${FILESDIR}/${P}-ldflags.patch" ) - -src_compile() { - use static && append-flags -static - emake RPM_OPT_FLAGS="${CFLAGS}" || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" INSTALLFLAGS="" install || die "make install failed" - dodoc README.dd_rescue -} diff --git a/sys-fs/dd-rescue/dd-rescue-1.23.ebuild b/sys-fs/dd-rescue/dd-rescue-1.23.ebuild deleted file mode 100644 index aaec8760e36e..000000000000 --- a/sys-fs/dd-rescue/dd-rescue-1.23.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-fs/dd-rescue/dd-rescue-1.23.ebuild,v 1.2 2010/11/19 18:53:47 jlec Exp $ - -EAPI=3 - -inherit base toolchain-funcs - -MY_PN=${PN/-/_} -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Similar to dd but can copy from source with errors" -HOMEPAGE="http://www.garloff.de/kurt/linux/ddrescue/" -SRC_URI="http://www.garloff.de/kurt/linux/ddrescue/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~mips ~ppc ~sparc ~x86 ~arm ~amd64-linux ~x86-linux ~ppc-macos" -IUSE="static kernel_linux elibc_glibc" - -S=${WORKDIR}/${MY_PN} - -src_compile() { - use static && append-flags -static - - # Passing LDFLAGS together with CFLAGS is not often a good idea, but - # in this case it makes it possible to avoid patching; after all it - # only builds the progrma whole, not with object files. - # - # The falloc target creates a dd_rescue binary that uses the - # fallocate() function, present in Kernel 2.6.23 and later and GLIBC - # 2.10 and later. If somebody can think of a better way to - # optionally use it, suggestions are welcome. - emake RPM_OPT_FLAGS="${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" \ - $(use kernel_linux && use elibc_glibc && echo "falloc") || die "emake failed" -} - -src_install() { - # easier to install by hand than trying to make sense of the - # Makefile. - into / - dobin dd_rescue || die - - dodoc README.dd_rescue || die -} |