Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/devhelp: devhelp-3.10.2.ebuild ChangeLog
Date: Tue, 24 Dec 2013 16:06:59
Message-Id: 20131224160656.50BD52004C@flycatcher.gentoo.org
1 pacho 13/12/24 16:06:56
2
3 Modified: ChangeLog
4 Added: devhelp-3.10.2.ebuild
5 Log:
6 Version bump for Gnome 3.10
7
8 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.163 dev-util/devhelp/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/ChangeLog?rev=1.163&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/ChangeLog?rev=1.163&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/ChangeLog?r1=1.162&r2=1.163
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v
20 retrieving revision 1.162
21 retrieving revision 1.163
22 diff -u -r1.162 -r1.163
23 --- ChangeLog 8 Dec 2013 18:14:39 -0000 1.162
24 +++ ChangeLog 24 Dec 2013 16:06:56 -0000 1.163
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-util/devhelp
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v 1.162 2013/12/08 18:14:39 pacho Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/ChangeLog,v 1.163 2013/12/24 16:06:56 pacho Exp $
30 +
31 +*devhelp-3.10.2 (24 Dec 2013)
32 +
33 + 24 Dec 2013; Pacho Ramos <pacho@g.o> +devhelp-3.10.2.ebuild:
34 + Version bump for Gnome 3.10
35
36 08 Dec 2013; Pacho Ramos <pacho@g.o> devhelp-3.8.2.ebuild:
37 x86 stable, bug #478252
38
39
40
41 1.1 dev-util/devhelp/devhelp-3.10.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/devhelp-3.10.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/devhelp/devhelp-3.10.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: devhelp-3.10.2.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-3.10.2.ebuild,v 1.1 2013/12/24 16:06:56 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="no"
54 # gedit-3.8 is python3 only, this also per:
55 # https://bugzilla.redhat.com/show_bug.cgi?id=979450
56 PYTHON_COMPAT=( python{3_2,3_3} )
57
58 inherit gnome2 python-single-r1 toolchain-funcs
59
60 DESCRIPTION="An API documentation browser for GNOME"
61 HOMEPAGE="http://live.gnome.org/devhelp"
62
63 LICENSE="GPL-2+"
64 SLOT="0/3-1" # subslot = 3-(libdevhelp-3 soname version)
65 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
66 IUSE="gedit"
67 REQUIRED_USE="gedit? ( ${PYTHON_REQUIRED_USE} )"
68
69 # FIXME: automagic python dependency
70 COMMON_DEPEND="
71 >=dev-libs/glib-2.37.3:2
72 >=x11-libs/gtk+-3.9.8:3
73 >=net-libs/webkit-gtk-2:3
74 "
75 RDEPEND="${COMMON_DEPEND}
76 gedit? (
77 ${PYTHON_DEPS}
78 app-editors/gedit[introspection,python,${PYTHON_USEDEP}]
79 dev-python/pygobject:3[${PYTHON_USEDEP}]
80 x11-libs/gtk+[introspection] )
81 gnome-base/gsettings-desktop-schemas
82 "
83 DEPEND="${COMMON_DEPEND}
84 ${PYTHON_DEPS}
85 >=dev-util/intltool-0.40
86 virtual/pkgconfig
87 "
88 pkg_setup() {
89 use gedit && python-single-r1_pkg_setup
90 }
91
92 src_prepare() {
93 if ! use gedit ; then
94 sed -e '/SUBDIRS/ s/gedit-plugin//' -i misc/Makefile.{am,in} || die
95 fi
96
97 gnome2_src_prepare
98 }
99
100 src_configure() {
101 local myconf=""
102 # ICC is crazy, silence warnings (bug #154010)
103 if [[ $(tc-getCC) == "icc" ]] ; then
104 myconf="--with-compile-warnings=no"
105 fi
106 gnome2_src_configure ${myconf}
107 }