blob: 94aa85aff8bcc8b54747a7e77cec1516507a6be0 (
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
93
94
95
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/qscintilla/qscintilla-2.8.4.ebuild,v 1.1 2014/09/13 01:07:02 pesa Exp $
EAPI=5
inherit eutils qmake-utils
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="mirror://sourceforge/pyqt/${MY_P}.tar.gz"
LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0/11"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
IUSE="designer doc"
DEPEND="
>=dev-qt/qtcore-4.8.5:4
>=dev-qt/qtgui-4.8.5:4
designer? ( >=dev-qt/designer-4.8.5:4 )
"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
PATCHES=(
"${FILESDIR}/${PN}-2.8.4-designer.patch"
)
src_unpack() {
default
# Sub-slot sanity check
local subslot=${SLOT#*/}
local version=$(sed -nre 's:.*VERSION\s*=\s*([0-9\.]+):\1:p' "${S}"/Qt4Qt5/qscintilla.pro)
local major=${version%%.*}
if [[ ${subslot} != ${major} ]]; then
eerror
eerror "Ebuild sub-slot (${subslot}) does not match QScintilla major version (${major})"
eerror "Please update SLOT variable as follows:"
eerror " SLOT=\"${SLOT%%/*}/${major}\""
eerror
die "sub-slot sanity check failed"
fi
}
src_prepare() {
[[ ${PATCHES[@]} ]] && epatch "${PATCHES[@]}"
}
src_configure() {
pushd Qt4Qt5 > /dev/null
eqmake4
popd > /dev/null
if use designer; then
pushd designer-Qt4Qt5 > /dev/null
eqmake4
popd > /dev/null
fi
}
src_compile() {
pushd Qt4Qt5 > /dev/null
emake
popd > /dev/null
if use designer; then
pushd designer-Qt4Qt5 > /dev/null
emake
popd > /dev/null
fi
}
src_install() {
pushd Qt4Qt5 > /dev/null
emake INSTALL_ROOT="${D}" install
popd > /dev/null
if use designer; then
pushd designer-Qt4Qt5 > /dev/null
emake INSTALL_ROOT="${D}" install
popd > /dev/null
fi
dodoc NEWS
if use doc; then
docinto html
dodoc -r doc/html-Qt4Qt5/*
fi
}
|