blob: 31302e38868227098ead1f4417d3e2e66cae10cd (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.15.5.2.ebuild,v 1.2 2009/12/02 18:43:18 jer Exp $
inherit eutils multilib autotools
DESCRIPTION="Package maintenance system for Debian"
HOMEPAGE="http://packages.qa.debian.org/dpkg"
SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~s390 ~sh ~sparc ~x86"
IUSE="bzip2 nls test unicode zlib"
RDEPEND=">=dev-lang/perl-5.6.0
dev-perl/TimeDate
>=sys-libs/ncurses-5.2-r7
zlib? ( >=sys-libs/zlib-1.1.4 )
bzip2? ( app-arch/bzip2 )"
DEPEND="${RDEPEND}
nls? ( app-text/po4a )
test? ( dev-perl/Test-Pod dev-perl/IO-String )"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-1.15.1-nls.patch #192819
if ! use unicode ; then
sed -i "s:ncursesw/::" dselect/{Makefile.in,dselect.h,main.cc} #217046
export ac_cv_lib_ncursesw_initscr=no
fi
eautoreconf
}
src_compile() {
econf \
$(use_with bzip2 bz2) \
$(use_enable nls) \
$(use_with zlib) \
--without-selinux \
--without-start-stop-daemon \
|| die
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm "${D}"/usr/sbin/install-info || die "rm install-info failed"
dodoc ChangeLog INSTALL THANKS TODO
keepdir /usr/$(get_libdir)/db/methods/{mnt,floppy,disk}
keepdir /usr/$(get_libdir)/db/{alternatives,info,methods,parts,updates}
}
|