diff options
author | 2013-01-18 09:17:50 +0000 | |
---|---|---|
committer | 2013-01-18 09:17:50 +0000 | |
commit | 8d6fb6c3bdd6875eb2ed4c7e7e99aebd722058a1 (patch) | |
tree | 1765555a34de3f3a20ec38a3c9ad08bdf17b915e /app-arch/alien/alien-8.88.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-8d6fb6c3bdd6875eb2ed4c7e7e99aebd722058a1.tar.gz gentoo-2-8d6fb6c3bdd6875eb2ed4c7e7e99aebd722058a1.tar.bz2 gentoo-2-8d6fb6c3bdd6875eb2ed4c7e7e99aebd722058a1.zip |
cleaned out old versions + version bump (bug #451678)
(Portage version: 2.1.11.38/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-arch/alien/alien-8.88.ebuild')
-rw-r--r-- | app-arch/alien/alien-8.88.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-arch/alien/alien-8.88.ebuild b/app-arch/alien/alien-8.88.ebuild new file mode 100644 index 000000000000..7712738a6c4d --- /dev/null +++ b/app-arch/alien/alien-8.88.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/alien/alien-8.88.ebuild,v 1.1 2013/01/18 09:17:49 lordvan Exp $ + +EAPI=1 + +inherit perl-app + +DESCRIPTION="Converts between the rpm, dpkg, stampede slp, and slackware tgz file formats" +HOMEPAGE="http://kitenet.net/programs/alien" +SRC_URI="mirror://debian/pool/main/a/${PN}/${PN}_${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86" +IUSE="+bzip2" + +RDEPEND="app-arch/rpm + app-arch/dpkg + bzip2? ( app-arch/bzip2 ) + dev-util/debhelper + >=app-arch/tar-1.14.91" +DEPEND="${RDEPEND}" + +S=${WORKDIR}/${PN} + +mydoc="TODO" + +src_unpack() { + perl-module_src_unpack + sed -e s%'$(VARPREFIX)'%${D}% -e s%'$(PREFIX)'%${D}/usr%g \ + -i "${S}"/Makefile.PL || die "sed failed." +} |