blob: c2434209c22acdd4fb75a5ed62ffaff266680d25 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/moreutils/moreutils-0.30.ebuild,v 1.2 2008/05/31 16:48:38 coldwind Exp $
inherit eutils
DESCRIPTION="a growing collection of the unix tools that nobody thought to write
thirty years ago"
HOMEPAGE="http://kitenet.net/~joey/code/moreutils/"
SRC_URI="http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="dev-lang/perl"
DEPEND="${RDEPEND}
>=app-text/docbook2X-0.8.8-r2"
S=${WORKDIR}/${PN}
src_compile() {
emake CFLAGS="${CFLAGS}" DOCBOOK2XMAN="docbook2man.pl" || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
}
|