diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-08-01 17:54:58 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-08-01 17:54:58 +0000 |
commit | c848c686fdaee19380af72538b73c5cabfda7630 (patch) | |
tree | b64e6109173fa6a49f3cb7d345cbeb486673b515 /app-misc/detox | |
parent | app-misc/when: Drop old (diff) | |
download | historical-c848c686fdaee19380af72538b73c5cabfda7630.tar.gz historical-c848c686fdaee19380af72538b73c5cabfda7630.tar.bz2 historical-c848c686fdaee19380af72538b73c5cabfda7630.zip |
app-misc/detox: Drop old
Package-Manager: portage-2.2.0_alpha120/cvs/Linux x86_64
Diffstat (limited to 'app-misc/detox')
-rw-r--r-- | app-misc/detox/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/detox/detox-1.2.0-r1.ebuild | 38 | ||||
-rw-r--r-- | app-misc/detox/detox-1.2.0.ebuild | 44 |
3 files changed, 5 insertions, 83 deletions
diff --git a/app-misc/detox/ChangeLog b/app-misc/detox/ChangeLog index a6b4083424cb..e012f840ca6a 100644 --- a/app-misc/detox/ChangeLog +++ b/app-misc/detox/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/detox # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/detox/ChangeLog,v 1.32 2012/07/29 18:03:08 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/detox/ChangeLog,v 1.33 2012/08/01 17:54:58 jlec Exp $ + + 01 Aug 2012; Justin Lecher <jlec@gentoo.org> -detox-1.2.0.ebuild, + -detox-1.2.0-r1.ebuild: + Drop old 29 Jul 2012; Raúl Porcel <armin76@gentoo.org> detox-1.2.0.ebuild, detox-1.2.0-r1.ebuild, detox-1.2.0-r2.ebuild: diff --git a/app-misc/detox/detox-1.2.0-r1.ebuild b/app-misc/detox/detox-1.2.0-r1.ebuild deleted file mode 100644 index 013219402ccd..000000000000 --- a/app-misc/detox/detox-1.2.0-r1.ebuild +++ /dev/null @@ -1,38 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/detox/detox-1.2.0-r1.ebuild,v 1.2 2012/07/29 18:03:08 armin76 Exp $ - -EAPI=4 - -inherit eutils - -MY_P="${PN}-${PV/_/-}" - -DESCRIPTION="Safely remove spaces and strange characters from filenames" -HOMEPAGE="http://detox.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~mips ~ppc ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -S="${WORKDIR}"/${MY_P} - -RDEPEND="dev-libs/popt" -DEPEND="${RDEPEND} - sys-devel/flex - sys-devel/bison" - -src_prepare() { - epatch \ - "${FILESDIR}"/${P}-parallel.patch \ - "${FILESDIR}"/${P}-LDFLAGS.patch - sed \ - -e '/detoxrc.sample/d' \ - -i Makefile.in || die -} - -src_configure() { - econf --with-popt="${EPREFIX}/usr" -} diff --git a/app-misc/detox/detox-1.2.0.ebuild b/app-misc/detox/detox-1.2.0.ebuild deleted file mode 100644 index 17f7f7ae98fd..000000000000 --- a/app-misc/detox/detox-1.2.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/detox/detox-1.2.0.ebuild,v 1.7 2012/07/29 18:03:08 armin76 Exp $ - -inherit eutils - -MY_P="${PN}-${PV/_/-}" - -DESCRIPTION="Safely remove spaces and strange characters from filenames" -HOMEPAGE="http://detox.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 ~hppa ~mips ppc x86" -IUSE="" - -S="${WORKDIR}"/${MY_P} - -RDEPEND="dev-libs/popt" -DEPEND="${RDEPEND} - sys-devel/flex - sys-devel/bison" - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch \ - "${FILESDIR}"/${P}-parallel.patch \ - "${FILESDIR}"/${P}-LDFLAGS.patch -} - -src_compile() { - econf --with-popt - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - - rm -f "${D}/etc/detoxrc.sample" - dodoc README CHANGES || die -} |