blob: 2fbc05ac8b9dd324f487c254cd8a29ce5697c083 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/rpm/rpm-4.0.4-r4.ebuild,v 1.7 2003/01/13 03:44:56 seemant Exp $
inherit flag-o-matic
# note to self: check for java deps
DESCRIPTION="Red Hat Package Management Utils"
SRC_URI="ftp://ftp.rpm.org/pub/rpm/dist/rpm-4.0.x/${P}.tar.gz"
HOMEPAGE="http://www.rpm.org/"
SLOT="0"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="x86 ppc sparc alpha"
IUSE="nls"
RDEPEND="=sys-libs/db-3.2*
>=sys-libs/zlib-1.1.3
>=sys-apps/bzip2-1.0.1
>=dev-libs/popt-1.6.3"
DEPEND="${RDEPEND}
sys-devel/gettext"
filter-flags -fPIC
src_unpack() {
export WANT_AUTOCONF_2_1=1
unpack ${A}
cd ${S}
patch -p1 < ${FILESDIR}/${P}-system-popt.diff || die
rm -rf ${S}/popt
# Suppress pointer warnings
cp configure configure.orig
sed -e "s:-Wpointer-arith::" configure.orig > configure
}
src_compile() {
local myconf
use nls || myconf="--disable-nls"
econf ${myconf}
make || die
}
src_install() {
make DESTDIR=${D} install || die
mv ${D}/bin/rpm ${D}/usr/bin
rm -rf ${D}/bin
# Fix for bug #8578 (app-arch/rpm create dead symlink)
# Local RH 7.3 install has no such symlink anywhere
rm -f ${D}/usr/lib/rpmpopt
keepdir /var/lib/rpm
dodoc CHANGES COPYING CREDITS GROUPS README* RPM* TODO
}
pkg_postinst() {
if [ -f ${ROOT}/var/lib/rpm/nameindex.rpm ]; then
einfo "RPM database found... Rebuilding database (may take a while)..."
${ROOT}/usr/bin/rpm --rebuilddb --root=${ROOT}
else
einfo "No RPM database found... Creating database..."
${ROOT}/usr/bin/rpm --initdb --root=${ROOT}
fi
}
|