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-1.22-r1.ebuild geany-0.21-r1.ebuild geany-1.22.ebuild
Date: Sat, 01 Dec 2012 12:15:14
Message-Id: 20121201121500.66E6921690@flycatcher.gentoo.org
1 polynomial-c 12/12/01 12:15:00
2
3 Modified: ChangeLog
4 Added: geany-1.22-r1.ebuild
5 Removed: geany-0.21-r1.ebuild geany-1.22.ebuild
6 Log:
7 Switched to EAPI-5 for verbose build (bug #445388) and update desktop mimedatabase (bug #438224)
8
9 (Portage version: 2.2.0_alpha143/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 0x981CA6FC)
10
11 Revision Changes Path
12 1.59 dev-util/geany/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/ChangeLog?rev=1.59&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/ChangeLog?rev=1.59&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/ChangeLog?r1=1.58&r2=1.59
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-util/geany/ChangeLog,v
21 retrieving revision 1.58
22 retrieving revision 1.59
23 diff -u -r1.58 -r1.59
24 --- ChangeLog 27 Sep 2012 00:08:59 -0000 1.58
25 +++ ChangeLog 1 Dec 2012 12:15:00 -0000 1.59
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.58 2012/09/27 00:08:59 blueness Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-util/geany/ChangeLog,v 1.59 2012/12/01 12:15:00 polynomial-c Exp $
31 +
32 +*geany-1.22-r1 (01 Dec 2012)
33 +
34 + 01 Dec 2012; Lars Wendler <polynomial-c@g.o> -geany-0.21-r1.ebuild,
35 + -geany-1.22.ebuild, +geany-1.22-r1.ebuild:
36 + Switched to EAPI-5 for verbose build (bug #445388) and update desktop mime
37 + database (bug #438224). Removed old.
38
39 27 Sep 2012; Anthony G. Basile <blueness@g.o> geany-1.22.ebuild:
40 stable ppc, bug #429056
41
42
43
44 1.1 dev-util/geany/geany-1.22-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/geany-1.22-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/geany/geany-1.22-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: geany-1.22-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-1.22-r1.ebuild,v 1.1 2012/12/01 12:15:00 polynomial-c Exp $
54
55 EAPI=5
56 inherit eutils fdo-mime gnome2-utils
57
58 LANGS="ar ast be bg ca cs de el en_GB es fi fr gl hu id it ja kk ko lb lt mn nl nn pl pt pt_BR ro ru sk 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.16:2
71 >=dev-libs/glib-2.20: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 prune_libtool_files --all
99 }
100
101 pkg_preinst() { gnome2_icon_savelist; }
102
103 pkg_postinst() {
104 fdo-mime_desktop_database_update
105 gnome2_icon_cache_update
106 }
107
108 pkg_postrm() {
109 fdo-mime_desktop_database_update
110 gnome2_icon_cache_update
111 }