blob: 3cb98e2e862f56c152b10ec2f89d3aeeaffea6b9 (
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
34
35
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm2targz/rpm2targz-9.0-r2.ebuild,v 1.11 2005/05/17 10:33:31 liquidx Exp $
inherit toolchain-funcs eutils
DESCRIPTION="Convert a .rpm file to a .tar.gz archive"
HOMEPAGE="http://www.slackware.com/config/packages.php"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ppc sparc mips alpha arm hppa amd64 ia64 s390 ppc64"
IUSE=""
# NOTE: rpm2targz autodetects rpm2cpio at runtime, and uses it if available,
# so we don't explicitly set it as a dependency.
DEPEND="virtual/libc
app-arch/cpio
sys-apps/file"
RDEPEND="${DEPEND}
sys-apps/util-linux
sys-apps/which"
S=${WORKDIR}
src_unpack() {
unpack ${A}
cd ${S}
# makes rpm2targz extract in current dir
epatch ${FILESDIR}/${P}-gentoo.patch
# adds bzip2 detection (#23249)
epatch ${FILESDIR}/${P}-bzip2.patch
# adds bzip2 decompression to rpm2targz (#31164)
epatch ${FILESDIR}/${P}-bzip2_rpm2targz.patch
}
src_compile() {
$(tc-getCC) ${CFLAGS} -o rpmoffset rpmoffset.c || die
}
src_install() {
dobin rpmoffset rpm2targz || die
dodoc rpm2targz.README
}
|