blob: 9aa567df181a18adbaa8b4d97ce6dbc044c2f515 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.6.2.ebuild,v 1.4 2012/08/11 15:45:12 ago Exp $
EAPI=4
inherit qt4-r2
MY_P=QScintilla-gpl-${PV}
DESCRIPTION="A Qt port of Neil Hodgson's Scintilla C++ editor class"
HOMEPAGE="http://www.riverbankcomputing.co.uk/software/qscintilla/intro"
SRC_URI="http://www.riverbankcomputing.co.uk/static/Downloads/QScintilla2/${MY_P}.tar.gz"
LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc ~x86"
IUSE="doc python"
DEPEND="
x11-libs/qt-core:4
x11-libs/qt-gui:4
"
RDEPEND="${DEPEND}"
PDEPEND="python? ( ~dev-python/qscintilla-python-${PV} )"
S=${WORKDIR}/${MY_P}
PATCHES=(
"${FILESDIR}/${PN}-2.6.2-designer.patch"
)
src_configure() {
pushd Qt4Qt5 > /dev/null
einfo "Configuration of qscintilla"
eqmake4 qscintilla.pro
popd > /dev/null
pushd designer-Qt4 > /dev/null
einfo "Configuration of designer plugin"
eqmake4 designer.pro
popd > /dev/null
}
src_compile() {
pushd Qt4Qt5 > /dev/null
einfo "Building of qscintilla"
emake
popd > /dev/null
pushd designer-Qt4 > /dev/null
einfo "Building of designer plugin"
emake
popd > /dev/null
}
src_install() {
pushd Qt4Qt5 > /dev/null
einfo "Installation of qscintilla"
emake INSTALL_ROOT="${D}" install
popd > /dev/null
pushd designer-Qt4 > /dev/null
einfo "Installation of designer plugin"
emake INSTALL_ROOT="${D}" install
popd > /dev/null
dodoc NEWS
if use doc; then
dohtml doc/html-Qt4Qt5/*
insinto /usr/share/doc/${PF}
doins -r doc/Scintilla
fi
}
|