Gentoo Archives: gentoo-commits

From: Gilles Dartiguelongue <eva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gnome:master commit in: dev-cpp/gtksourceviewmm/
Date: Tue, 05 Apr 2011 12:52:54
Message-Id: b29a7f58191b7c1077f7c03389bd7b2bbf316c68.eva@gentoo
1 commit: b29a7f58191b7c1077f7c03389bd7b2bbf316c68
2 Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 5 11:05:14 2011 +0000
4 Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 5 12:42:02 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=b29a7f58
7
8 dev-cpp/gtksourceviewmm: QAed
9
10 * Bump to EAPI 3
11 * Drop custom handling of docs
12 * Drop useless mm-common dependency
13 * Set GCONF_DEBUG=no
14
15 (Portage version: 2.2.0_alpha29/git/Linux x86_64, RepoMan options: --force, signed Manifest commit with key C6085806)
16
17 ---
18 .../gtksourceviewmm/gtksourceviewmm-2.91.9.ebuild | 19 +++----------------
19 1 files changed, 3 insertions(+), 16 deletions(-)
20
21 diff --git a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.91.9.ebuild b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.91.9.ebuild
22 index ae1494d..31107f8 100644
23 --- a/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.91.9.ebuild
24 +++ b/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.91.9.ebuild
25 @@ -2,7 +2,9 @@
26 # Distributed under the terms of the GNU General Public License v2
27 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/gtksourceviewmm/gtksourceviewmm-2.10.1.ebuild,v 1.6 2011/01/24 16:22:47 eva Exp $
28
29 -EAPI="2"
30 +EAPI="3"
31 +GCONF_DEBUG="no"
32 +GNOME2_LA_PUNT="yes"
33
34 inherit gnome2
35
36 @@ -23,24 +25,9 @@ RDEPEND=">=dev-cpp/glibmm-2.27.93:2
37 dev-cpp/pangomm:1.4"
38 DEPEND="${RDEPEND}
39 dev-util/pkgconfig
40 - >=dev-cpp/mm-common-0.9.4
41 doc? ( app-doc/doxygen )"
42
43 pkg_setup() {
44 DOCS="AUTHORS ChangeLog* NEWS README"
45 G2CONF="${G2CONF} $(use_enable doc documentation)"
46 }
47 -
48 -src_prepare() {
49 - gnome2_src_prepare
50 -
51 - # Remove docs from SUBDIRS so that docs are not installed, as
52 - # we handle it in src_install.
53 - sed -i -e 's|^\(SUBDIRS =.*\)$(doc_subdirs)\(.*\)|\1\2|' Makefile.in || \
54 - die "sed Makefile.in failed"
55 -}
56 -
57 -src_install() {
58 - gnome2_src_install
59 - use doc && dohtml -r docs/reference/html/*
60 -}