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-cpp/libgnomecanvasmm: libgnomecanvasmm-2.26.0-r1.ebuild ChangeLog
Date: Tue, 08 Jul 2014 11:58:29
Message-Id: 20140708115823.795892004E@flycatcher.gentoo.org
1 pacho 14/07/08 11:58:23
2
3 Modified: ChangeLog
4 Added: libgnomecanvasmm-2.26.0-r1.ebuild
5 Log:
6 Bump to eapi5 and set GCONF_DEBUG properly
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.83 dev-cpp/libgnomecanvasmm/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog?rev=1.83&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog?rev=1.83&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog?r1=1.82&r2=1.83
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v
20 retrieving revision 1.82
21 retrieving revision 1.83
22 diff -u -r1.82 -r1.83
23 --- ChangeLog 4 May 2012 03:44:58 -0000 1.82
24 +++ ChangeLog 8 Jul 2014 11:58:23 -0000 1.83
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-cpp/libgnomecanvasmm
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.82 2012/05/04 03:44:58 jdhore Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/ChangeLog,v 1.83 2014/07/08 11:58:23 pacho Exp $
31 +
32 +*libgnomecanvasmm-2.26.0-r1 (08 Jul 2014)
33 +
34 + 08 Jul 2014; Pacho Ramos <pacho@g.o>
35 + +libgnomecanvasmm-2.26.0-r1.ebuild:
36 + Bump to eapi5 and set GCONF_DEBUG properly
37
38 04 May 2012; Jeff Horelick <jdhore@g.o>
39 libgnomecanvasmm-2.26.0.ebuild:
40 @@ -338,4 +344,3 @@
41 gnome2.eclass version of foser <foser@×××××××××.org> gnome-c++
42 bindings.
43 initial release
44 -
45
46
47
48 1.1 dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild?rev=1.1&content-type=text/plain
52
53 Index: libgnomecanvasmm-2.26.0-r1.ebuild
54 ===================================================================
55 # Copyright 1999-2014 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/libgnomecanvasmm/libgnomecanvasmm-2.26.0-r1.ebuild,v 1.1 2014/07/08 11:58:23 pacho Exp $
58
59 EAPI="5"
60 GCONF_DEBUG="no"
61 GNOME_TARBALL_SUFFIX="bz2"
62
63 inherit gnome2
64
65 DESCRIPTION="C++ bindings for libgnomecanvas"
66 HOMEPAGE="http://www.gtkmm.org"
67
68 LICENSE="LGPL-2.1"
69 SLOT="2.6"
70 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
71 IUSE="doc examples"
72
73 RDEPEND="
74 >=gnome-base/libgnomecanvas-2.6
75 >=dev-cpp/gtkmm-2.4:2.4
76 "
77 DEPEND="${RDEPEND}
78 virtual/pkgconfig
79 doc? ( app-doc/doxygen )
80 "
81
82 src_prepare() {
83 if ! use examples; then
84 # don't waste time building the examples
85 sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || \
86 die "sed Makefile.in failed"
87 fi
88 gnome2_src_prepare
89 }
90
91 src_compile() {
92 gnome2_src_compile
93
94 if use doc; then
95 cd "${S}/docs/reference"
96 emake all || die "failed to build API docs"
97 fi
98 }
99
100 src_install() {
101 gnome2_src_install
102
103 if use doc ; then
104 dohtml -r docs/reference/html/*
105 fi
106
107 if use examples; then
108 cp -R examples "${D}/usr/share/doc/${PF}"
109 fi
110 }