blob: 3d9a80270088265a328b45e0e4f73b4e2b0f5fac (
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
46
47
48
49
50
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm2targz/rpm2targz-9.0-r4.ebuild,v 1.3 2006/03/31 00:01:21 flameeyes 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="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE=""
# NOTE: rpm2targz autodetects rpm2cpio at runtime, and uses it if available,
# so we don't explicitly set it as a dependency.
DEPEND="app-arch/cpio
sys-apps/file"
RDEPEND="${DEPEND}
userland_GNU? (
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
# secures temp file handling (#96192)
epatch "${FILESDIR}"/${P}-secure_temp_handling.patch
# add supprot for a quicker rpm2tar
epatch "${FILESDIR}"/${P}-rpm2tar.patch
}
src_compile() {
emake rpmoffset CC=$(tc-getCC) || die
}
src_install() {
dobin rpmoffset rpm2targz || die
dosym rpm2targz /usr/bin/rpm2tar
dodoc rpm2targz.README
}
|