summaryrefslogtreecommitdiff
blob: 3e8e05c48c4e979003e668749838818be7895ad5 (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/dpkg/dpkg-1.10.10.ebuild,v 1.1 2003/07/15 14:57:48 lanius Exp $

DESCRIPTION="Package maintenance system for Debian"
HOMEPAGE="http://packages.qa.debian.org/dpkg"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc"
SRC_URI="http://ftp.debian.org/debian/pool/main/d/dpkg/dpkg_${PV}.tar.gz"
RDEPEND=">=dev-lang/perl-5.6.0
	>=sys-libs/ncurses-5.2-r7
	>=sys-libs/zlib-1.1.4" #app-text/sgmltools-lite?

DEPEND="${RDEPEND}
	>=sys-devel/gettext-0.11.5"

S="${WORKDIR}/dpkg-${PV}"

src_compile() {
	cd main
	ln -s ../archtable
	cd ..
	epatch ${FILESDIR}/${P}.patch
	./configure || die
	make || die
}

src_install() {
	make DESTDIR=${D} install || die
    dodir /etc/alternatives
	insinto /etc/alternatives
	doins scripts/README.alternatives
	dodoc ABOUT-NLS COPYING ChangeLog INSTALL THANKS TODO
}