Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: qscintilla-2.5.1.ebuild ChangeLog
Date: Tue, 26 Apr 2011 19:27:46
Message-Id: 20110426192736.06C0920054@flycatcher.gentoo.org
1 arfrever 11/04/26 19:27:36
2
3 Modified: ChangeLog
4 Added: qscintilla-2.5.1.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha30_p2/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.64 x11-libs/qscintilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.64&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.64&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.63&r2=1.64
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
20 retrieving revision 1.63
21 retrieving revision 1.64
22 diff -u -r1.63 -r1.64
23 --- ChangeLog 16 Mar 2011 21:14:32 -0000 1.63
24 +++ ChangeLog 26 Apr 2011 19:27:35 -0000 1.64
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/qscintilla
27 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.63 2011/03/16 21:14:32 xarthisius Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.64 2011/04/26 19:27:35 arfrever Exp $
30 +
31 +*qscintilla-2.5.1 (26 Apr 2011)
32 +
33 + 26 Apr 2011; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
34 + +qscintilla-2.5.1.ebuild:
35 + Version bump.
36
37 16 Mar 2011; Kacper Kowalik <xarthisius@g.o> qscintilla-2.4.5.ebuild:
38 ppc64 stable wrt #349607
39
40
41
42 1.1 x11-libs/qscintilla/qscintilla-2.5.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.5.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.5.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: qscintilla-2.5.1.ebuild
48 ===================================================================
49 # Copyright 1999-2011 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.5.1.ebuild,v 1.1 2011/04/26 19:27:35 arfrever Exp $
52
53 EAPI="3"
54
55 inherit qt4-r2
56
57 MY_P="QScintilla-gpl-${PV/_pre/-snapshot-}"
58
59 DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class"
60 HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro"
61 SRC_URI="http://www.riverbankcomputing.co.uk/static/Downloads/QScintilla2/${MY_P}.tar.gz"
62
63 LICENSE="|| ( GPL-2 GPL-3 )"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
66 IUSE="doc python"
67
68 DEPEND="x11-libs/qt-gui:4"
69 RDEPEND="${DEPEND}"
70 PDEPEND="python? ( ~dev-python/qscintilla-python-${PV} )"
71
72 S=${WORKDIR}/${MY_P}
73
74 PATCHES=("${FILESDIR}/${PN}-2.4-designer.patch")
75
76 src_configure() {
77 pushd Qt4 > /dev/null
78 einfo "Configuration of qscintilla"
79 eqmake4 qscintilla.pro
80 popd > /dev/null
81
82 pushd designer-Qt4 > /dev/null
83 einfo "Configuration of designer plugin"
84 eqmake4 designer.pro
85 popd > /dev/null
86 }
87
88 src_compile() {
89 pushd Qt4 > /dev/null
90 einfo "Building of qscintilla"
91 emake || die "Building of qscintilla failed"
92 popd > /dev/null
93
94 pushd designer-Qt4 > /dev/null
95 einfo "Building of designer plugin"
96 emake || die "Building of designer plugin failed"
97 popd > /dev/null
98 }
99
100 src_install() {
101 pushd Qt4 > /dev/null
102 einfo "Installation of qscintilla"
103 emake INSTALL_ROOT="${D}" install || die "Installation of qscintilla failed"
104 popd > /dev/null
105
106 pushd designer-Qt4 > /dev/null
107 einfo "Installation of designer plugin"
108 emake INSTALL_ROOT="${D}" install || die "Installation of designer plugin failed"
109 popd > /dev/null
110
111 dodoc NEWS || die "dodoc failed"
112 if use doc; then
113 einfo "Installation of documentation"
114 dohtml doc/html-Qt4/* || die "dohtml failed"
115 insinto /usr/share/doc/${PF}/Scintilla
116 doins doc/Scintilla/* || die "doins failed"
117 fi
118 }