Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/geany: ChangeLog geany-0.21-r1.ebuild geany-0.21.ebuild geany-0.20.ebuild
Date: Wed, 06 Jun 2012 13:24:35
Message-Id: 20120606132405.761A52004B@flycatcher.gentoo.org
1 polynomial-c 12/06/06 13:24:05
2
3 Modified: ChangeLog
4 Added: geany-0.21-r1.ebuild
5 Removed: geany-0.21.ebuild geany-0.20.ebuild
6 Log:
7 Simple docdir fix (bug #419745). Bumped straight to stable. Removed old versions
8
9 (Portage version: 2.2.0_alpha110/cvs/Linux x86_64, RepoMan options: --force)
10
11 Revision Changes Path
12 1.52 dev-util/geany/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/ChangeLog?rev=1.52&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/ChangeLog?rev=1.52&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/ChangeLog?r1=1.51&r2=1.52
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-util/geany/ChangeLog,v
21 retrieving revision 1.51
22 retrieving revision 1.52
23 diff -u -r1.51 -r1.52
24 --- ChangeLog 4 May 2012 17:51:43 -0000 1.51
25 +++ ChangeLog 6 Jun 2012 13:24:05 -0000 1.52
26 @@ -1,6 +1,13 @@
27 # ChangeLog for dev-util/geany
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-util/geany/ChangeLog,v 1.51 2012/05/04 17:51:43 jdhore Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/geany/ChangeLog,v 1.52 2012/06/06 13:24:05 polynomial-c Exp $
31 +
32 +*geany-0.21-r1 (06 Jun 2012)
33 +
34 + 06 Jun 2012; Lars Wendler <polynomial-c@g.o> -geany-0.20.ebuild,
35 + -geany-0.21.ebuild, +geany-0.21-r1.ebuild:
36 + Simple docdir fix (bug #419745). Bumped straight to stable. Removed old
37 + versions.
38
39 04 May 2012; Jeff Horelick <jdhore@g.o> geany-0.19.2.ebuild,
40 geany-0.20.ebuild, geany-0.21.ebuild:
41
42
43
44 1.1 dev-util/geany/geany-0.21-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/geany-0.21-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/geany-0.21-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: geany-0.21-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/dev-util/geany/geany-0.21-r1.ebuild,v 1.1 2012/06/06 13:24:05 polynomial-c Exp $
54
55 EAPI=4
56 inherit eutils gnome2-utils
57
58 LANGS="ast be bg ca cs de el en_GB es fi fr gl hu it ja kk ko lb nl pl pt pt_BR ro ru sl sv tr uk vi zh_CN ZH_TW"
59 NOSHORTLANGS="en_GB zh_CN zh_TW"
60
61 DESCRIPTION="GTK+ based fast and lightweight IDE"
62 HOMEPAGE="http://www.geany.org"
63 SRC_URI="http://download.geany.org/${P}.tar.bz2"
64
65 LICENSE="GPL-2 Scintilla"
66 SLOT="0"
67 KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~amd64-linux ~x86-linux"
68 IUSE="+vte"
69
70 RDEPEND=">=x11-libs/gtk+-2.12:2
71 >=dev-libs/glib-2.16:2
72 vte? ( x11-libs/vte:0 )"
73 DEPEND="${RDEPEND}
74 virtual/pkgconfig
75 dev-util/intltool
76 sys-devel/gettext"
77
78 pkg_setup() {
79 strip-linguas ${LANGS}
80 }
81
82 src_prepare() {
83 # Syntax highlighting for Portage
84 sed -i -e "s:*.sh;:*.sh;*.ebuild;*.eclass;:" \
85 data/filetype_extensions.conf || die
86 }
87
88 src_configure() {
89 econf \
90 --disable-dependency-tracking \
91 --docdir="/usr/share/doc/${PF}" \
92 $(use_enable vte)
93 }
94
95 src_install() {
96 emake DESTDIR="${D}" DOCDIR="${ED}/usr/share/doc/${PF}" install || die
97 rm -f "${ED}"/usr/share/doc/${PF}/{COPYING,GPL-2,ScintillaLicense.txt}
98 find "${ED}" -type f -name '*.la' -delete
99 }
100
101 pkg_preinst() { gnome2_icon_savelist; }
102 pkg_postinst() { gnome2_icon_cache_update; }
103 pkg_postrm() { gnome2_icon_cache_update; }