blob: 12cb1a338a6bf2fe1f08c619675322d3b87a0b05 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/quilt/quilt-0.32.ebuild,v 1.3 2004/11/11 10:27:54 ferringb Exp $
inherit eutils
DESCRIPTION="quilt patch manager"
HOMEPAGE="http://savannah.nongnu.org/projects/quilt"
SRC_URI="http://savannah.nongnu.org/download/quilt/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE="doc"
DEPEND="sys-devel/patch
>=sys-apps/sed-4
app-arch/bzip2
app-arch/gzip
dev-util/diffstat
sys-apps/gawk
sys-apps/sed
dev-lang/perl"
src_compile() {
econf || die "failed to configure ${P}"
emake || die "emake failed"
}
src_install() {
make BUILD_ROOT=${D} install || die
}
|