Gentoo Archives: gentoo-commits

From: "Markos Chandras (hwoarang)" <hwoarang@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/qscintilla: ChangeLog qscintilla-2.4.5.ebuild
Date: Wed, 01 Sep 2010 09:10:53
Message-Id: 20100901091045.8DE5F20051@flycatcher.gentoo.org
1 hwoarang 10/09/01 09:10:45
2
3 Modified: ChangeLog
4 Added: qscintilla-2.4.5.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2_rc72/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.50 x11-libs/qscintilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.50&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.50&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.49&r2=1.50
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
20 retrieving revision 1.49
21 retrieving revision 1.50
22 diff -u -r1.49 -r1.50
23 --- ChangeLog 18 Aug 2010 03:51:49 -0000 1.49
24 +++ ChangeLog 1 Sep 2010 09:10:45 -0000 1.50
25 @@ -1,6 +1,12 @@
26 # ChangeLog for x11-libs/qscintilla
27 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.49 2010/08/18 03:51:49 jer Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.50 2010/09/01 09:10:45 hwoarang Exp $
30 +
31 +*qscintilla-2.4.5 (01 Sep 2010)
32 +
33 + 01 Sep 2010; Markos Chandras <hwoarang@g.o>
34 + +qscintilla-2.4.5.ebuild:
35 + Version bump
36
37 18 Aug 2010; Jeroen Roovers <jer@g.o> qscintilla-2.4.3.ebuild:
38 Stable for HPPA (bug #315775).
39
40
41
42 1.1 x11-libs/qscintilla/qscintilla-2.4.5.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.5.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.5.ebuild?rev=1.1&content-type=text/plain
46
47 Index: qscintilla-2.4.5.ebuild
48 ===================================================================
49 # Copyright 1999-2010 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.4.5.ebuild,v 1.1 2010/09/01 09:10:45 hwoarang Exp $
52
53 EAPI="2"
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 ~hppa ~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 cd "${S}"/Qt4
78 einfo "Configuring qscintilla"
79 eqmake4 qscintilla.pro
80
81 cd "${S}"/designer-Qt4
82 einfo "Configuring designer plugin"
83 eqmake4 designer.pro
84 }
85
86 src_compile() {
87 cd "${S}"/Qt4
88 einfo "Building qscintilla"
89 emake || die "failed to build qscintilla"
90
91 cd "${S}"/designer-Qt4
92 einfo "Building designer plugin"
93 emake || die "failed to build designer plugin"
94 }
95
96 src_install() {
97 cd "${S}"/Qt4
98 einfo "Installing qscintilla"
99 emake INSTALL_ROOT="${D}" install || die "failed to install qscintilla"
100
101 cd "${S}"/designer-Qt4
102 einfo "Installing designer plugin"
103 emake INSTALL_ROOT="${D}" install || die "failed to install designer plugin"
104
105 cd "${S}"
106 dodoc NEWS
107 if use doc; then
108 einfo "Installing documentation"
109 dohtml doc/html-Qt4/* || die
110 insinto /usr/share/doc/${PF}/Scintilla
111 doins doc/Scintilla/* || die
112 fi
113 }