blob: 204c65964c84b65f160a5d68b9075259810b4ced (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/alien/alien-8.74.ebuild,v 1.5 2009/03/21 01:46:14 jer 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 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."
}
|