Gentoo Archives: gentoo-commits

From: "Peter Volkov (pva)" <pva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-doc/gimp-help: ChangeLog gimp-help-2.4.2.ebuild gimp-help-2.4.0.ebuild
Date: Sat, 11 Oct 2008 19:28:23
Message-Id: E1Kok8T-00051e-6B@stork.gentoo.org
1 pva 08/10/11 19:28:21
2
3 Modified: ChangeLog
4 Added: gimp-help-2.4.2.ebuild
5 Removed: gimp-help-2.4.0.ebuild
6 Log:
7 Version bump, removed -j1 as it was fixed upstream. Made installable with gimp-2.6, bug #240433, thank Jeroen Roovers and Night Nord for report.
8 (Portage version: 2.2_rc11/cvs/Linux 2.6.26-gentoo-r1 i686)
9
10 Revision Changes Path
11 1.53 app-doc/gimp-help/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/gimp-help/ChangeLog?rev=1.53&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/gimp-help/ChangeLog?rev=1.53&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/gimp-help/ChangeLog?r1=1.52&r2=1.53
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-doc/gimp-help/ChangeLog,v
20 retrieving revision 1.52
21 retrieving revision 1.53
22 diff -u -r1.52 -r1.53
23 --- ChangeLog 24 Jul 2008 21:39:41 -0000 1.52
24 +++ ChangeLog 11 Oct 2008 19:28:21 -0000 1.53
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-doc/gimp-help
27 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/ChangeLog,v 1.52 2008/07/24 21:39:41 cardoe Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/ChangeLog,v 1.53 2008/10/11 19:28:21 pva Exp $
30 +
31 +*gimp-help-2.4.2 (11 Oct 2008)
32 +
33 + 11 Oct 2008; Peter Volkov <pva@g.o> -gimp-help-2.4.0.ebuild,
34 + +gimp-help-2.4.2.ebuild:
35 + Version bump, removed -j1 as it was fixed upstream. Made installable with
36 + gimp-2.6, bug #240433, thank Jeroen Roovers and Night Nord for report.
37
38 24 Jul 2008; Doug Goldstein <cardoe@g.o> metadata.xml:
39 add GLEP 56 USE flag desc from use.local.desc
40
41
42
43 1.1 app-doc/gimp-help/gimp-help-2.4.2.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/gimp-help/gimp-help-2.4.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-doc/gimp-help/gimp-help-2.4.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gimp-help-2.4.2.ebuild
49 ===================================================================
50 # Copyright 1999-2008 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-doc/gimp-help/gimp-help-2.4.2.ebuild,v 1.1 2008/10/11 19:28:21 pva Exp $
53
54 inherit eutils
55
56 DESCRIPTION="GNU Image Manipulation Program help files"
57 HOMEPAGE="http://docs.gimp.org/"
58 SRC_URI="mirror://gimp/help/${P}.tar.bz2"
59
60 LICENSE="FDL-1.2"
61 SLOT="2"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 -mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
63
64 IUSE=""
65
66 # Only *not* outdated translations (see, configure.ac) are listed.
67 # On update do not forgive to check quickreference/Makefile.am for
68 # QUICKREFERENCE_ALL_LINGUAS. LANGS should include that langs too.
69 LANGS="de en es fr it ko nl no pl ru sv"
70
71 for X in ${LANGS} ; do
72 IUSE="${IUSE} linguas_${X}"
73 done
74
75 DEPEND="=app-text/docbook-xml-dtd-4.3*
76 dev-libs/libxml2
77 dev-libs/libxslt"
78 RDEPEND=">=media-gfx/gimp-2.4"
79
80 src_compile() {
81 local ALL_LINGUAS=""
82
83 for X in ${LANGS} ; do
84 use linguas_${X} && ALL_LINGUAS="${ALL_LINGUAS} ${X}"
85 done
86
87 ALL_LINGUAS=${ALL_LINGUAS} \
88 econf \
89 --without-gimp \
90 --disable-network \
91 || die "econf failed"
92
93 emake || die "emake failed"
94 }
95
96 src_install() {
97 emake DESTDIR="${D}" install || die "make install failed"
98 dodoc AUTHORS ChangeLog HACKING NEWS README TERMINOLOGY
99 }