blob: 7e21f846b18e359e7e9b249b444a8ea82888c4ad (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.13.11.ebuild,v 1.12 2006/08/19 13:27:09 vapier Exp $
inherit eutils multilib
DESCRIPTION="Package maintenance system for Debian"
HOMEPAGE="http://packages.qa.debian.org/dpkg"
SRC_URI="mirror://debian/pool/main/d/dpkg/${P/-/_}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ppc s390 sh sparc x86"
IUSE="zlib bzip2"
RDEPEND=">=dev-lang/perl-5.6.0
>=sys-libs/ncurses-5.2-r7
zlib? ( >=sys-libs/zlib-1.1.4 )
bzip2? ( app-arch/bzip2 )"
DEPEND="${RDEPEND}"
src_compile() {
econf \
$(use_with zlib) \
$(use_with bzip2 bz2lib) \
|| die
make || die
}
src_install() {
make DESTDIR="${D}" install || die
rm "${D}"/usr/sbin/{install-info,start-stop-daemon}
rm "${D}"/usr/share/man/man?/{install-info,start-stop-daemon}.?
dodoc ChangeLog INSTALL THANKS TODO
keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
}
|