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-cpp/cairomm: cairomm-1.8.2.ebuild ChangeLog
Date: Thu, 29 Oct 2009 22:46:47
Message-Id: E1N3dlT-0006HZ-L3@stork.gentoo.org
1 eva 09/10/29 22:46:43
2
3 Modified: ChangeLog
4 Added: cairomm-1.8.2.ebuild
5 Log:
6 New version for GNOME 2.28.
7 (Portage version: 2.2_rc46/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.36 dev-cpp/cairomm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cairomm/ChangeLog?rev=1.36&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cairomm/ChangeLog?rev=1.36&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cairomm/ChangeLog?r1=1.35&r2=1.36
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/cairomm/ChangeLog,v
19 retrieving revision 1.35
20 retrieving revision 1.36
21 diff -u -r1.35 -r1.36
22 --- ChangeLog 12 Oct 2009 20:08:39 -0000 1.35
23 +++ ChangeLog 29 Oct 2009 22:46:43 -0000 1.36
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-cpp/cairomm
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/cairomm/ChangeLog,v 1.35 2009/10/12 20:08:39 eva Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/cairomm/ChangeLog,v 1.36 2009/10/29 22:46:43 eva Exp $
29 +
30 +*cairomm-1.8.2 (29 Oct 2009)
31 +
32 + 29 Oct 2009; Gilles Dartiguelongue <eva@g.o> +cairomm-1.8.2.ebuild:
33 + New version for GNOME 2.28.
34
35 12 Oct 2009; Gilles Dartiguelongue <eva@g.o -cairomm-1.2.4.ebuild,
36 cairomm-1.4.4.ebuild, -cairomm-1.5.0.ebuild,
37
38
39
40 1.1 dev-cpp/cairomm/cairomm-1.8.2.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cairomm/cairomm-1.8.2.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/cairomm/cairomm-1.8.2.ebuild?rev=1.1&content-type=text/plain
44
45 Index: cairomm-1.8.2.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/cairomm/cairomm-1.8.2.ebuild,v 1.1 2009/10/29 22:46:43 eva Exp $
50
51 EAPI="2"
52
53 inherit eutils
54
55 DESCRIPTION="C++ bindings for the Cairo vector graphics library"
56 HOMEPAGE="http://cairographics.org/cairomm"
57 SRC_URI="http://cairographics.org/releases/${P}.tar.gz"
58
59 LICENSE="LGPL-2"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
62 IUSE="doc svg"
63
64 # FIXME: svg support is automagic
65 RDEPEND=">=x11-libs/cairo-1.8[svg?]
66 dev-libs/libsigc++:2"
67 DEPEND="${RDEPEND}
68 doc? ( app-doc/doxygen )"
69
70 src_prepare() {
71 # don't waste time building examples because they are marked as "noinst"
72 sed -i 's/^\(SUBDIRS =.*\)examples\(.*\)$/\1\2/' Makefile.in || die "sed failed"
73
74 # don't waste time building tests
75 # they require the boost Unit Testing framework, that's not in base boost
76 sed -i 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' Makefile.in || die "sed failed"
77 }
78
79 src_configure() {
80 econf $(use_enable doc docs)
81 }
82
83 src_install() {
84 emake DESTDIR="${D}" install || die "emake install failed"
85 dodoc README ChangeLog || die "dodoc failed"
86 }