Gentoo Archives: gentoo-commits

From: "Gilles Dartiguelongue (eva)" <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/devhelp: ChangeLog devhelp-0.19.ebuild
Date: Sun, 10 Feb 2008 11:11:14
Message-Id: E1JOA5X-0007nz-Qg@stork.gentoo.org
1 eva 08/02/10 11:11:11
2
3 Modified: ChangeLog
4 Added: devhelp-0.19.ebuild
5 Log:
6 * bump to 0.19, updated translations and gedit plugin icon
7 (Portage version: 2.1.4.1)
8
9 Revision Changes Path
10 1.70 dev-util/devhelp/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/devhelp/ChangeLog?rev=1.70&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/devhelp/ChangeLog?rev=1.70&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/devhelp/ChangeLog?r1=1.69&r2=1.70
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v
19 retrieving revision 1.69
20 retrieving revision 1.70
21 diff -u -r1.69 -r1.70
22 --- ChangeLog 3 Feb 2008 17:53:11 -0000 1.69
23 +++ ChangeLog 10 Feb 2008 11:11:11 -0000 1.70
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-util/devhelp
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v 1.69 2008/02/03 17:53:11 leio Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v 1.70 2008/02/10 11:11:11 eva Exp $
29 +
30 +*devhelp-0.19 (10 Feb 2008)
31 +
32 + 10 Feb 2008; Gilles Dartiguelongue <eva@g.o> +devhelp-0.19.ebuild:
33 + bump to 0.19, updated translations and gedit plugin icon
34
35 *devhelp-0.18 (03 Feb 2008)
36
37
38
39
40 1.1 dev-util/devhelp/devhelp-0.19.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/devhelp/devhelp-0.19.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/devhelp/devhelp-0.19.ebuild?rev=1.1&content-type=text/plain
44
45 Index: devhelp-0.19.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-0.19.ebuild,v 1.1 2008/02/10 11:11:11 eva Exp $
50
51 inherit toolchain-funcs gnome2 python
52
53 DESCRIPTION="An API documentation browser for GNOME 2"
54 HOMEPAGE="http://developer.imendio.com/wiki/Devhelp"
55
56 LICENSE="GPL-2"
57 SLOT="0"
58 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
59 IUSE="xulrunner zlib"
60
61 RDEPEND=">=gnome-base/gconf-2.6
62 >=x11-libs/gtk+-2.8
63 >=dev-libs/glib-2.8
64 >=gnome-base/libglade-2.4
65 >=x11-libs/libwnck-2.10
66 xulrunner? ( net-libs/xulrunner )
67 !xulrunner? ( >=www-client/mozilla-firefox-1.0.2-r1 )
68 zlib? ( sys-libs/zlib )"
69 DEPEND="${RDEPEND}
70 sys-devel/gettext
71 >=dev-util/intltool-0.35.5
72 >=dev-util/pkgconfig-0.9"
73
74 DOCS="AUTHORS ChangeLog NEWS README"
75
76 src_unpack() {
77 gnome2_src_unpack
78
79 # disable pyc compiling
80 mv py-compile py-compile.orig
81 ln -s $(type -P true) py-compile
82 }
83
84 pkg_setup() {
85 G2CONF="$(use_with zlib)"
86
87 if use xulrunner ; then
88 G2CONF="${G2CONF} --with-gecko=xulrunner"
89 else
90 G2CONF="${G2CONF} --with-gecko=firefox"
91 fi
92
93 # ICC is crazy, silence warnings (bug #154010)
94 if [[ $(tc-getCC) == "icc" ]] ; then
95 G2CONF="${G2CONF} --with-compile-warnings=no"
96 fi
97 }
98
99 pkg_postinst() {
100 python_version
101 python_mod_optimize /usr/$(get_libdir)/gedit-2/plugins/devhelp
102 }
103
104 pkg_postrm() {
105 python_version
106 python_mod_cleanup
107 }
108
109
110
111 --
112 gentoo-commits@l.g.o mailing list