diff options
author | Patrice Clement <monsieurp@gentoo.org> | 2016-02-16 10:49:03 +0000 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-02-16 10:52:02 +0000 |
commit | 15a76c3d15b534df7e411cc3a08272223f7f23ab (patch) | |
tree | 57fb81effe4cb36fbae415b65233946001957d1d /app-arch/alien/alien-8.95.ebuild | |
parent | dev-lang/scala: Drop old version scala-2.9.2-r1, superceeded by scala-2.9.3 (diff) | |
download | gentoo-15a76c3d15b534df7e411cc3a08272223f7f23ab.tar.gz gentoo-15a76c3d15b534df7e411cc3a08272223f7f23ab.tar.bz2 gentoo-15a76c3d15b534df7e411cc3a08272223f7f23ab.zip |
app-arch/alien: Version bump.
Package-Manager: portage-2.2.26
Diffstat (limited to 'app-arch/alien/alien-8.95.ebuild')
-rw-r--r-- | app-arch/alien/alien-8.95.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-arch/alien/alien-8.95.ebuild b/app-arch/alien/alien-8.95.ebuild new file mode 100644 index 000000000000..0dcfa5000556 --- /dev/null +++ b/app-arch/alien/alien-8.95.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit perl-module + +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.xz -> ${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86" +IUSE="+bzip2" + +RDEPEND=" + app-arch/rpm + app-arch/dpkg + dev-util/debhelper + >=app-arch/tar-1.14.91 + bzip2? ( + app-arch/bzip2 + )" + +DEPEND="${RDEPEND}" + +src_prepare() { + sed -e s%'$(VARPREFIX)'%${D}% -e s%'$(PREFIX)'%${D}/usr%g \ + -i "${S}"/Makefile.PL || die "sed failed." +} |