diff options
author | Jeroen Roovers <jer@gentoo.org> | 2015-01-04 10:50:00 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2015-01-04 10:50:00 +0000 |
commit | bf4d75e0f6188e466ad53b506c74588581031096 (patch) | |
tree | 00e7b9d134e0ea608178e361d50e92754cbc83f0 /dev-util/debhelper | |
parent | Use fltk-config instead of hard-coding includes/libs (bug #534410 by Toralf F... (diff) | |
download | gentoo-2-bf4d75e0f6188e466ad53b506c74588581031096.tar.gz gentoo-2-bf4d75e0f6188e466ad53b506c74588581031096.tar.bz2 gentoo-2-bf4d75e0f6188e466ad53b506c74588581031096.zip |
Version bump.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-util/debhelper')
-rw-r--r-- | dev-util/debhelper/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/debhelper/debhelper-9.20150101.ebuild | 70 |
2 files changed, 77 insertions, 2 deletions
diff --git a/dev-util/debhelper/ChangeLog b/dev-util/debhelper/ChangeLog index e356f92f70a7..61386af865aa 100644 --- a/dev-util/debhelper/ChangeLog +++ b/dev-util/debhelper/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/debhelper -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.114 2014/12/22 10:26:59 jer Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.115 2015/01/04 10:50:00 jer Exp $ + +*debhelper-9.20150101 (04 Jan 2015) + + 04 Jan 2015; Jeroen Roovers <jer@gentoo.org> +debhelper-9.20150101.ebuild: + Version bump. *debhelper-9.20141222 (22 Dec 2014) diff --git a/dev-util/debhelper/debhelper-9.20150101.ebuild b/dev-util/debhelper/debhelper-9.20150101.ebuild new file mode 100644 index 000000000000..1335f9fbd4d9 --- /dev/null +++ b/dev-util/debhelper/debhelper-9.20150101.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-9.20150101.ebuild,v 1.1 2015/01/04 10:49:59 jer Exp $ + +EAPI=5 +inherit eutils toolchain-funcs + +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://joeyh.name/code/debhelper/" +SRC_URI="mirror://debian/pool/main/d/${PN}/${P/-/_}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux" +IUSE="test" +DH_LINGUAS=( de es fr ) +IUSE+=" ${DH_LINGUAS[@]/#/linguas_}" + +NLS_DEPEND=$( + printf "linguas_%s? ( >=app-text/po4a-0.24 )\n" ${DH_LINGUAS[@]} +) + +RDEPEND=" + >=dev-lang/perl-5.10 + >=app-arch/dpkg-1.17 + dev-perl/TimeDate + virtual/perl-Getopt-Long +" +DEPEND="${RDEPEND} + ${NLS_DEPEND} + test? ( dev-perl/Test-Pod ) +" + +S=${WORKDIR}/${PN} + +src_compile() { + tc-export CC + + local LANGS="" USE_NLS=no lingua + for lingua in ${DH_LINGUAS[@]}; do + if use linguas_${lingua}; then + LANGS+=" ${lingua}" + USE_NLS=yes + fi + done + + emake USE_NLS="${USE_NLS}" LANGS="${LANGS}" build +} + +src_install() { + emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install + dodoc doc/* debian/changelog + docinto examples + dodoc examples/* + local lingua + for manfile in *.1 *.7 ; do + for lingua in ${DH_LINGUAS[@]}; do + case ${manfile} in + *.${lingua}.?) + use linguas_${lingua} \ + && cp ${manfile} "${T}"/${manfile/.${lingua}/} \ + && doman -i18n=${lingua} "${T}"/${manfile/.${lingua}/} + ;; + *) + doman ${manfile} + ;; + esac + done + done +} |