blob: f6b53677bfebf2720e26617f3d15ece0bc9dcc9e (
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.1 2004/07/20 14:31:10 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"
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
}
|