diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2005-06-10 13:22:05 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2005-06-10 13:22:05 +0000 |
commit | 98c6aa5515a1d795a886e7f7144248bb15dce21e (patch) | |
tree | 190ec65026e747a191ae27ecc7f085c8c1c01eb1 /app-misc/detox/detox-1.1.1-r1.ebuild | |
parent | Added to ~ppc (diff) | |
download | gentoo-2-98c6aa5515a1d795a886e7f7144248bb15dce21e.tar.gz gentoo-2-98c6aa5515a1d795a886e7f7144248bb15dce21e.tar.bz2 gentoo-2-98c6aa5515a1d795a886e7f7144248bb15dce21e.zip |
Revision bump; upstream uses a char (and assumes it's unsigned on top of it) where they should've used an int - bug 95628.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-misc/detox/detox-1.1.1-r1.ebuild')
-rw-r--r-- | app-misc/detox/detox-1.1.1-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/app-misc/detox/detox-1.1.1-r1.ebuild b/app-misc/detox/detox-1.1.1-r1.ebuild new file mode 100644 index 000000000000..cd817158e35c --- /dev/null +++ b/app-misc/detox/detox-1.1.1-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/detox/detox-1.1.1-r1.ebuild,v 1.1 2005/06/10 13:22:05 ka0ttic Exp $ + +inherit eutils + +DESCRIPTION="detox safely removes spaces and strange characters from filenames" +HOMEPAGE="http://detox.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~mips ~sparc ~x86" +IUSE="" + +DEPEND="dev-libs/popt + sys-devel/flex + sys-devel/bison" + +RDEPEND="dev-libs/popt" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${P}-use-correct-type.diff +} + +src_compile() { + econf --with-popt || die "econf failed" + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "install failed" + dodoc README CHANGES +} + |