jer         14/08/17 22:50:09

  Modified:             ChangeLog
  Added:                debhelper-9.20140817.ebuild
  Removed:              debhelper-9.20140809.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
A792A613)

Revision  Changes    Path
1.109                dev-util/debhelper/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debhelper/ChangeLog?rev=1.109&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debhelper/ChangeLog?rev=1.109&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debhelper/ChangeLog?r1=1.108&r2=1.109

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -r1.108 -r1.109
--- ChangeLog   13 Aug 2014 09:31:54 -0000      1.108
+++ ChangeLog   17 Aug 2014 22:50:09 -0000      1.109
@@ -1,6 +1,12 @@
 # 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.108 
2014/08/13 09:31:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/debhelper/ChangeLog,v 1.109 
2014/08/17 22:50:09 jer Exp $
+
+*debhelper-9.20140817 (17 Aug 2014)
+
+  17 Aug 2014; Jeroen Roovers <[email protected]> -debhelper-9.20140809.ebuild,
+  +debhelper-9.20140817.ebuild:
+  Version bump.
 
   13 Aug 2014; Agostino Sarubbo <[email protected]> debhelper-9.20140228.ebuild:
   Stable for ppc, wrt bug #506100



1.1                  dev-util/debhelper/debhelper-9.20140817.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debhelper/debhelper-9.20140817.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/debhelper/debhelper-9.20140817.ebuild?rev=1.1&content-type=text/plain

Index: debhelper-9.20140817.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-util/debhelper/debhelper-9.20140817.ebuild,v 1.1 
2014/08/17 22:50:09 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
}




Reply via email to