blob: caa12e974f51b3b88e84418ca4adeaa75d51d90b (
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.4.ebuild,v 1.1 2009/06/09 19:00:02 hwoarang Exp $
EAPI="2"
inherit eutils multilib qt3 qt4
MY_P="QScintilla-gpl-${PV/_pre/-snapshot-}"
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 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE="doc python +qt4"
RDEPEND="qt4? ( x11-libs/qt-gui:4 )
!qt4? ( x11-libs/qt:3 )"
DEPEND="${RDEPEND}"
# dev-python/PyQt needs qscintilla to build and qscintilla's python bindings
# need dev-python/PyQt, bug 199543
PDEPEND="python? ( ~dev-python/qscintilla-python-${PV}[qt4=] )"
S="${WORKDIR}"/${MY_P}
PATCHES=( "${FILESDIR}/${PN}-2.4-designer.patch" )
src_configure() {
if use qt4; then
myqtver=4
myqtdir=/usr/share/qt4
else
myqtver=3
myqtdir=${QTDIR}
fi
cd "${S}"/Qt${myqtver}
eqmake${myqtver} qscintilla.pro
cd "${S}"/designer-Qt${myqtver}
eqmake${myqtver} designer.pro
}
src_compile() {
cd "${S}"/Qt${myqtver}
emake all staticlib || die "emake failed"
cd "${S}"/designer-Qt${myqtver}
emake || die "failed to build designer plugin"
}
src_install() {
cd "${S}"/Qt${myqtver}
# header files
insinto /usr/include/Qsci
doins Qsci/*.h || die
# libraries
dolib.so libqscintilla2.so* || die
dolib.a libqscintilla2.a || die
# translations
insinto /usr/share/${PN}/translations
doins qscintilla_*.qm || die
for trans in $(ls -1 qscintilla_*.qm); do
dosym /usr/share/${PN}/translations/${trans} \
${myqtdir}/translations/${trans} || die
done
# designer plugin
cd "${S}"/designer-Qt${myqtver}
emake INSTALL_ROOT="${D}" install || die "designer plugin installation failed"
# documentation
cd "${S}"
dodoc ChangeLog NEWS
if use doc; then
dohtml doc/html-Qt${myqtver}/* || die
insinto /usr/share/doc/${PF}/Scintilla
doins doc/Scintilla/* || die
fi
}
pkg_postinst() {
if use qt4; then
ewarn "Please remerge dev-python/PyQt4 if you have problems with eric or other"
else
ewarn "Please remerge dev-python/PyQt if you have problems with"
fi
ewarn "qscintilla related packages before submitting bug reports."
}
|