diff options
author | 2015-03-10 10:13:58 +0000 | |
---|---|---|
committer | 2015-03-10 10:13:58 +0000 | |
commit | fc3e1e13dd2617ffbb8e01d598d0e29b2f8ee697 (patch) | |
tree | ba350ef7c8c176225dc4cfc1fe24b24559272bfc /dev-util/debhelper/debhelper-9.20130630.ebuild | |
parent | Version BUmp, #531542; fix for musl, #533570; drop suspecious einstall, #5216... (diff) | |
download | historical-fc3e1e13dd2617ffbb8e01d598d0e29b2f8ee697.tar.gz historical-fc3e1e13dd2617ffbb8e01d598d0e29b2f8ee697.tar.bz2 historical-fc3e1e13dd2617ffbb8e01d598d0e29b2f8ee697.zip |
Old.
Package-Manager: portage-2.2.18/cvs/Linux x86_64
Manifest-Sign-Key: 0xA792A613
Diffstat (limited to 'dev-util/debhelper/debhelper-9.20130630.ebuild')
-rw-r--r-- | dev-util/debhelper/debhelper-9.20130630.ebuild | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/dev-util/debhelper/debhelper-9.20130630.ebuild b/dev-util/debhelper/debhelper-9.20130630.ebuild deleted file mode 100644 index 7246b05b22ea..000000000000 --- a/dev-util/debhelper/debhelper-9.20130630.ebuild +++ /dev/null @@ -1,70 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-9.20130630.ebuild,v 1.11 2013/08/07 13:22:19 ago 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 - 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 -} |