blob: 9d7a409d04702f12b1acedde071bd3cb8629df7f (
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
54
55
56
57
58
59
60
61
62
63
64
65
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-7.0.16.ebuild,v 1.6 2008/11/04 09:40:01 vapier Exp $
inherit eutils
DESCRIPTION="Collection of programs that can be used to automate common tasks in debian/rules"
HOMEPAGE="http://packages.qa.debian.org/d/debhelper.html http://kitenet.net/~joey/code/debhelper.html"
SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ppc s390 sh sparc x86"
IUSE="nls linguas_es linguas_fr"
RDEPEND="app-arch/dpkg
dev-perl/TimeDate
dev-lang/perl"
DEPEND="${RDEPEND}
nls? ( >=app-text/po4a-0.24 )"
S="${WORKDIR}"/${PN}
PATCH_VER=7.0.9
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-${PATCH_VER}-conditional-nls.patch
}
src_compile() {
local USE_NLS=no LANGS=""
use nls && USE_NLS=yes
use linguas_es && LANGS="${LANGS} es"
use linguas_fr && LANGS="${LANGS} fr"
emake USE_NLS=${USE_NLS} LANGS="${LANGS}" build \
|| die "Compilation failed"
}
src_install() {
emake DESTDIR="${D}" install || die "Installation failed"
dodoc doc/* debian/changelog
docinto examples
dodoc examples/*
for manfile in *.1 *.7 ; do
case ${manfile} in
*.es.?) use linguas_es \
&& cp ${manfile} "${T}"/${manfile/.es/} \
&& doman -i18n=es "${T}"/${manfile/.es/}
;;
*.fr.?) use linguas_fr \
&& cp ${manfile} "${T}"/${manfile/.fr/} \
&& doman -i18n=fr "${T}"/${manfile/.fr/}
;;
*) doman ${manfile}
;;
esac
done
}
|