diff options
author | Yuri Vasilevski <yvasilev@gentoo.org> | 2008-08-22 17:41:33 +0000 |
---|---|---|
committer | Yuri Vasilevski <yvasilev@gentoo.org> | 2008-08-22 17:41:33 +0000 |
commit | 43c2b091e755e2e9229bad33ebdb257d9496a7ca (patch) | |
tree | 085a54a38f089ed7172af20a927bf5025a6e84c3 /dev-util/debhelper | |
parent | Removed bashisms in tests, closing bug #233953 (diff) | |
download | gentoo-2-43c2b091e755e2e9229bad33ebdb257d9496a7ca.tar.gz gentoo-2-43c2b091e755e2e9229bad33ebdb257d9496a7ca.tar.bz2 gentoo-2-43c2b091e755e2e9229bad33ebdb257d9496a7ca.zip |
Updated to v7.0.16.
(Portage version: 2.2_rc8/cvs/Linux 2.6.25-gentoo-r4 x86_64)
Diffstat (limited to 'dev-util/debhelper')
-rw-r--r-- | dev-util/debhelper/ChangeLog | 9 | ||||
-rw-r--r-- | dev-util/debhelper/debhelper-7.0.16.ebuild (renamed from dev-util/debhelper/debhelper-7.0.10.ebuild) | 4 | ||||
-rw-r--r-- | dev-util/debhelper/debhelper-7.0.9.ebuild | 63 |
3 files changed, 10 insertions, 66 deletions
diff --git a/dev-util/debhelper/ChangeLog b/dev-util/debhelper/ChangeLog index 98625ae50025..243df8f73fac 100644 --- a/dev-util/debhelper/ChangeLog +++ b/dev-util/debhelper/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-util/debhelper # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.3 2008/06/09 17:10:45 yvasilev Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.4 2008/08/22 17:41:33 yvasilev Exp $ + +*debhelper-7.0.16 (22 Aug 2008) + + 22 Aug 2008; Yuri Vasilevski <yvasilev@gentoo.org> + -debhelper-7.0.9.ebuild, -debhelper-7.0.10.ebuild, + +debhelper-7.0.16.ebuild: + Updated to v7.0.16. *debhelper-7.0.10 (09 Jun 2008) diff --git a/dev-util/debhelper/debhelper-7.0.10.ebuild b/dev-util/debhelper/debhelper-7.0.16.ebuild index ec279c73e247..82dc075f2039 100644 --- a/dev-util/debhelper/debhelper-7.0.10.ebuild +++ b/dev-util/debhelper/debhelper-7.0.16.ebuild @@ -1,10 +1,10 @@ # Copyright 2008-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.10.ebuild,v 1.1 2008/06/09 17:10:45 yvasilev Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-7.0.16.ebuild,v 1.1 2008/08/22 17:41:33 yvasilev Exp $ inherit eutils -DESCRIPTION="A collection of programs that can be used in a debian/rules file to automate common tasks related to building debian packages." +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" diff --git a/dev-util/debhelper/debhelper-7.0.9.ebuild b/dev-util/debhelper/debhelper-7.0.9.ebuild deleted file mode 100644 index 16ca511a2815..000000000000 --- a/dev-util/debhelper/debhelper-7.0.9.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 2008-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.9.ebuild,v 1.1 2008/05/29 15:35:09 yvasilev Exp $ - -inherit eutils - -DESCRIPTION="A collection of programs that can be used in a debian/rules file to automate common tasks related to building debian packages." -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} - -src_unpack() { - unpack ${A} - cd "${S}" - - epatch "${FILESDIR}"/${P}-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 -} |