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: qscintilla-2.6.1.ebuild ChangeLog
Date: Sun, 04 Mar 2012 17:30:16
Message-Id: 20120304173004.66A792004B@flycatcher.gentoo.org
1 hwoarang 12/03/04 17:30:04
2
3 Modified: ChangeLog
4 Added: qscintilla-2.6.1.ebuild
5 Log:
6 version bump
7
8 (Portage version: 2.2.0_alpha89/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.69 x11-libs/qscintilla/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.69&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?rev=1.69&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/ChangeLog?r1=1.68&r2=1.69
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v
20 retrieving revision 1.68
21 retrieving revision 1.69
22 diff -u -r1.68 -r1.69
23 --- ChangeLog 12 Nov 2011 10:57:21 -0000 1.68
24 +++ ChangeLog 4 Mar 2012 17:30:04 -0000 1.69
25 @@ -1,6 +1,11 @@
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.68 2011/11/12 10:57:21 hwoarang Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/ChangeLog,v 1.69 2012/03/04 17:30:04 hwoarang Exp $
31 +
32 +*qscintilla-2.6.1 (04 Mar 2012)
33 +
34 + 04 Mar 2012; Markos Chandras <hwoarang@g.o> +qscintilla-2.6.1.ebuild:
35 + version bump
36
37 *qscintilla-2.6 (12 Nov 2011)
38
39
40
41
42 1.1 x11-libs/qscintilla/qscintilla-2.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/qscintilla/qscintilla-2.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: qscintilla-2.6.1.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/qscintilla/qscintilla-2.6.1.ebuild,v 1.1 2012/03/04 17:30:04 hwoarang 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 }