Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libchamplain: ChangeLog libchamplain-0.8.0.ebuild
Date: Sat, 02 Oct 2010 21:15:22
Message-Id: 20101002211514.0626420051@flycatcher.gentoo.org
1 jlec 10/10/02 21:15:13
2
3 Modified: ChangeLog
4 Added: libchamplain-0.8.0.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2_rc88/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.4 media-libs/libchamplain/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libchamplain/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 22 Jun 2010 07:32:06 -0000 1.3
24 +++ ChangeLog 2 Oct 2010 21:15:13 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libchamplain
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libchamplain/ChangeLog,v 1.3 2010/06/22 07:32:06 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libchamplain/ChangeLog,v 1.4 2010/10/02 21:15:13 jlec Exp $
30 +
31 +*libchamplain-0.8.0 (02 Oct 2010)
32 +
33 + 02 Oct 2010; Justin Lecher <jlec@g.o> +libchamplain-0.8.0.ebuild:
34 + Version Bump
35
36 22 Jun 2010; Justin Lecher <jlec@g.o> libchamplain-0.6.0.ebuild:
37 Added missing *DEPENDs on media-libs/pymemphis, bug 324673
38
39
40
41 1.1 media-libs/libchamplain/libchamplain-0.8.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/libchamplain-0.8.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libchamplain/libchamplain-0.8.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: libchamplain-0.8.0.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/media-libs/libchamplain/libchamplain-0.8.0.ebuild,v 1.1 2010/10/02 21:15:13 jlec Exp $
51
52 EAPI="3"
53
54 PYTHON_DEPEND="python? 2"
55 SUPPORT_PYTHON_ABIS="1"
56
57 inherit gnome2 python
58
59 DESCRIPTION="Clutter based world map renderer"
60 HOMEPAGE="http://blog.pierlux.com/projects/libchamplain/en/"
61
62 LICENSE="LGPL-2"
63 SLOT="0.6"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="debug doc gtk introspection python"
66
67 RDEPEND="
68 >=dev-libs/glib-2.16
69 >=x11-libs/cairo-1.4
70 >=net-libs/libsoup-2.26[gnome]
71 media-libs/clutter:1.0
72 media-libs/memphis
73 dev-db/sqlite:3
74 gtk? (
75 >=x11-libs/gtk+-2.18
76 media-libs/memphis:0.2
77 >=media-libs/clutter-gtk-0.10:1.0 )
78 python? (
79 media-libs/pymemphis
80 dev-python/pyclutter
81 dev-python/pyclutter-gtk )"
82 DEPEND="${RDEPEND}
83 dev-util/pkgconfig
84 doc? ( >=dev-util/gtk-doc-1.9 )
85 introspection? ( >=dev-libs/gobject-introspection-0.6.3 )"
86
87 RESTRICT_PYTHON_ABIS="3.*"
88
89 DOCS="AUTHORS ChangeLog NEWS README"
90
91 G2CONF="${G2CONF}
92 --disable-static
93 --enable-memphis
94 $(use_enable debug)
95 $(use_enable gtk)
96 $(use_enable introspection)
97 $(use_enable python)"
98
99 src_prepare() {
100 gnome2_src_prepare
101 sed 's:bindings::g' -i Makefile.in || die
102 }
103
104 src_compile() {
105 gnome2_src_compile
106 if use python; then
107 python_copy_sources bindings
108 building() {
109 emake \
110 PYTHON_INCLUDES="-I$(python_get_includedir)" \
111 pythondir="$(python_get_sitedir)" \
112 pyexecdir="$(python_get_sitedir)"
113 }
114 python_execute_function -s --source-dir bindings building
115 fi
116 }
117
118 src_install() {
119 gnome2_src_install
120 if use python; then
121 installation() {
122 emake DESTDIR="${ED}" \
123 pythondir="$(python_get_sitedir)" \
124 pyexecdir="$(python_get_sitedir)" \
125 install
126 }
127 python_execute_function -s --source-dir bindings installation
128 python_clean_installation_image
129 fi
130 }