diff options
author | 2005-07-04 16:12:32 +0000 | |
---|---|---|
committer | 2005-07-04 16:12:32 +0000 | |
commit | 70b95b9cc6554645b6c07b68918184a36de3949f (patch) | |
tree | 1fc1e2955deabaf3551af61f562ebaa2ff8b6f2d /app-arch/alien/alien-8.53.ebuild | |
parent | Fixed 1.0.0 bigendian build problems and sparc stable, others gone the -sparc... (diff) | |
download | gentoo-2-70b95b9cc6554645b6c07b68918184a36de3949f.tar.gz gentoo-2-70b95b9cc6554645b6c07b68918184a36de3949f.tar.bz2 gentoo-2-70b95b9cc6554645b6c07b68918184a36de3949f.zip |
new version + cleanup (see ChangeLog)
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-arch/alien/alien-8.53.ebuild')
-rw-r--r-- | app-arch/alien/alien-8.53.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/app-arch/alien/alien-8.53.ebuild b/app-arch/alien/alien-8.53.ebuild new file mode 100644 index 000000000000..8d49655b0dc3 --- /dev/null +++ b/app-arch/alien/alien-8.53.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-arch/alien/alien-8.53.ebuild,v 1.1 2005/07/04 16:12:32 lordvan Exp $ + +DESCRIPTION="Converts between the rpm, dpkg, stampede slp, and slackware tgz file formats" +HOMEPAGE="http://kitenet.net/programs/alien/" +SRC_URI="http://kitenet.net/programs/alien/${PN}_${PV}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86 ~alpha" +IUSE="" + +DEPEND=">=dev-lang/perl-5.6.0 + >=app-arch/rpm-4.0.4-r4 + >=app-arch/bzip2-1.0.2-r2 + >=app-arch/dpkg-1.10.9" + +S=${WORKDIR}/${PN} + +src_compile() { + perl Makefile.PL PREFIX="${D}/usr" || die "configuration failed" + emake || die "emake failed." +} + +src_install() { + dodir /usr/lib/perl5/site_perl/`perl -e 'printf "%vd", $^V;'`/Alien/Package + make install PREFIX=${D}/usr \ + INSTALLMAN1DIR=${D}/usr/share/man/man1 \ + INSTALLMAN3DIR=${D}/usr/share/man/man3 \ + VARPREFIX=${D} + dodoc INSTALL README TODO +} |