Gentoo Archives: gentoo-commits

From: "Matti Bickel (mabi)" <mabi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/fxscintilla: fxscintilla-2.28.0.ebuild ChangeLog
Date: Thu, 01 Mar 2012 22:48:59
Message-Id: 20120301224849.0DB0E2004B@flycatcher.gentoo.org
1 mabi 12/03/01 22:48:49
2
3 Modified: ChangeLog
4 Added: fxscintilla-2.28.0.ebuild
5 Log:
6 version bump (bug #403089)
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.50 x11-libs/fxscintilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fxscintilla/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fxscintilla/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fxscintilla/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 25 Jun 2010 17:04:23 -0000 1.49
24 +++ ChangeLog 1 Mar 2012 22:48:48 -0000 1.50
25 @@ -1,6 +1,11 @@
26 # ChangeLog for x11-libs/fxscintilla
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/ChangeLog,v 1.49 2010/06/25 17:04:23 ssuominen Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/ChangeLog,v 1.50 2012/03/01 22:48:48 mabi Exp $
31 +
32 +*fxscintilla-2.28.0 (01 Mar 2012)
33 +
34 + 01 Mar 2012; Matti Bickel <mabi@g.o> +fxscintilla-2.28.0.ebuild:
35 + version bump (bug #403089)
36
37 25 Jun 2010; Samuli Suominen <ssuominen@g.o>
38 -files/1.62-fox-SLOT.patch, -fxscintilla-1.71-r1.ebuild,
39
40
41
42 1.1 x11-libs/fxscintilla/fxscintilla-2.28.0.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fxscintilla/fxscintilla-2.28.0.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/fxscintilla/fxscintilla-2.28.0.ebuild?rev=1.1&content-type=text/plain
46
47 Index: fxscintilla-2.28.0.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/fxscintilla/fxscintilla-2.28.0.ebuild,v 1.1 2012/03/01 22:48:48 mabi Exp $
52
53 EAPI=4
54
55 inherit autotools eutils multilib
56
57 DESCRIPTION="A free source code editing component for the FOX-Toolkit"
58 HOMEPAGE="http://www.nongnu.org/fxscintilla/"
59 SRC_URI="http://savannah.nongnu.org/download/fxscintilla/${P}.tar.gz"
60
61 LICENSE="LGPL-2.1"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
64 IUSE="doc"
65
66 RDEPEND="|| ( x11-libs/fox:1.6 x11-libs/fox:1.7 )"
67 DEPEND="${RDEPEND}"
68
69 src_prepare() {
70 # fox-1.7.32 installs fox17.pc, the fox module is used by fox-1.6
71 if has_version "x11-libs/fox:1.7" ; then
72 sed -i -e "s/fox >= 1.7/fox17 >= 1.7/" "${S}/configure.in"
73 eautoreconf
74 fi
75 }
76
77 src_configure() {
78 econf --libdir=/usr/$(get_libdir) --enable-shared
79 }
80
81 src_install () {
82 emake DESTDIR="${D}" install
83
84 dodoc README
85 if use doc ; then
86 dodoc scintilla/doc/Lexer.txt
87 dohtml scintilla/doc/*
88 fi
89 }
90
91 pkg_postinst() {
92 elog "FXScintilla is now built only against the highest available"
93 elog "FOX-version you have installed."
94 }