summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2012-08-01 17:54:58 +0000
committerJustin Lecher <jlec@gentoo.org>2012-08-01 17:54:58 +0000
commit23198f8fbb43d411b8ae36e6b501355edf275c45 (patch)
tree9440468d755d77a72c4c7a8883905e0520f37881 /app-misc/detox
parentapp-misc/when: Drop old (diff)
downloadgentoo-2-23198f8fbb43d411b8ae36e6b501355edf275c45.tar.gz
gentoo-2-23198f8fbb43d411b8ae36e6b501355edf275c45.tar.bz2
gentoo-2-23198f8fbb43d411b8ae36e6b501355edf275c45.zip
app-misc/detox: Drop old
(Portage version: 2.2.0_alpha120/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/detox')
-rw-r--r--app-misc/detox/ChangeLog6
-rw-r--r--app-misc/detox/detox-1.2.0-r1.ebuild38
-rw-r--r--app-misc/detox/detox-1.2.0.ebuild44
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
-}