blob: 11d3283687b4a1a34cf5f418eb65841e8a1a4108 (
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="4"
LANGS="cs de es fr hu it ja pl ru sl uk zh_CN"
inherit qt4-edge git multilib
MY_PN="${PN/-/}"
DESCRIPTION="Lightweight IDE for C++ development centering around Qt"
HOMEPAGE="http://qt.nokia.com/products/developer-tools"
EGIT_REPO_URI="git://gitorious.org/${PN}/${PN}.git"
if [[ ${PV} == 2.9999 ]]; then
EGIT_BRANCH="2.0"
fi
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS=""
IUSE="bazaar bineditor bookmarks +botan-bundled +cmake cvs debug doc examples fakevim git
mercurial perforce +qml qtscript rss subversion"
QTVER="4.7.4:4"
CDEPEND=">=x11-libs/qt-assistant-${QTVER}[doc?]
>=x11-libs/qt-sql-${QTVER}
>=x11-libs/qt-svg-${QTVER}
!qml? ( >=x11-libs/qt-gui-${QTVER} )
qml? (
>=x11-libs/qt-declarative-${QTVER}[private-headers(+)]
>=x11-libs/qt-core-${QTVER}[private-headers(+)]
>=x11-libs/qt-gui-${QTVER}[private-headers(+)]
>=x11-libs/qt-script-${QTVER}[private-headers(+)]
)
qtscript? ( >=x11-libs/qt-script-${QTVER} )
!botan-bundled? ( =dev-libs/botan-1.8* )"
DEPEND="${CDEPEND}
!botan-bundled? ( dev-util/pkgconfig )"
RDEPEND="${CDEPEND}
bazaar? ( dev-vcs/bzr )
cmake? ( dev-util/cmake )
cvs? ( dev-vcs/cvs )
sys-devel/gdb[python]
examples? ( >=x11-libs/qt-demo-${QTVER} )
git? ( dev-vcs/git )
mercurial? ( dev-vcs/mercurial )
subversion? ( dev-vcs/subversion )"
PLUGINS="bookmarks bineditor cmake cvs fakevim git mercurial perforce
qml qtscript subversion"
PATCHES=(
"${FILESDIR}"/${PN}-2.1.0_rc1-qml-plugin.patch
)
src_prepare() {
qt4-edge_src_prepare
git_src_prepare
# fix library path for styleplugin
sed -i -e "/target.path/s:lib:$(get_libdir):" \
"${S}"/src/libs/qtcomponents/styleitem/styleitem.pro \
|| die "Failed to fix multilib dir for styleplugin"
# bug 263087
for plugin in ${PLUGINS}; do
if ! use ${plugin}; then
einfo "Disabling ${plugin} support"
if [[ ${plugin} == "cmake" ]]; then
plugin="cmakeprojectmanager"
elif [[ ${plugin} == "qtscript" ]]; then
plugin="qtscripteditor"
elif [[ ${plugin} == "qml" ]]; then
for x in qmlprojectmanager qmljsinspector qmljseditor qmljstools qmldesigner; do
einfo "Disabling ${x} support"
sed -i "/plugin_${x}/s:^:#:" src/plugins/plugins.pro \
|| die "Failed to disable ${x} plugin"
done
fi
# Now disable the plugins
sed -i "/plugin_${plugin}/s:^:#:" src/plugins/plugins.pro
fi
done
if use perforce; then
ewarn
ewarn "You have enabled perforce plugin."
ewarn "In order to use it, you need to manually"
ewarn "download perforce client from http://www.perforce.com/perforce/downloads/index.html"
ewarn
fi
#disable rss news on startup ( bug #302978 )
if ! use rss; then
einfo "Disabling RSS welcome news"
sed -i "/m_rssFetcher->fetch/s:^:\/\/:" \
src/plugins/welcome/communitywelcomepagewidget.cpp \
|| die "failed to disable rss"
fi
# fix translations
sed -i "/^LANGUAGES/s:=.*:= ${LANGS}:" \
share/${MY_PN}/translations/translations.pro
# add rpath to make qtcreator actual find its *own* plugins
sed -i "/^LIBS/s:+=:& -Wl,-rpath,/usr/$(get_libdir)/${MY_PN} :" qtcreator.pri || die
if ! use botan-bundled; then
# identify system botan and pkg-config file
local botan_version=$(best_version dev-libs/botan | cut -d '-' -f3 | \
cut -d '.' -f1,2)
local lib_botan=$(pkg-config --libs botan-${botan_version})
einfo "Major version of system's botan library to be used: ${botan_version}"
# drop bundled libBotan. Bug #383033
rm -rf "${S}"/src/libs/3rdparty/botan || die
# remove references to bundled botan
sed -i -e "s:botan::" "${S}"/src/libs/3rdparty/3rdparty.pro || die
for x in testrunner parsertests modeldemo; do
sed -i -e "/botan.pri/d" "${S}"/tests/valgrind/memcheck/${x}.pro || die
done
sed -i -e "/botan.pri/d" "${S}"/src/libs/utils/utils_dependencies.pri || die
sed -i -e "/botan.pri/d" "${S}"/tests/manual/preprocessor/preprocessor.pro || die
# link to system botan
sed -i -e "/LIBS/s:$: ${lib_botan}:" "${S}"/${MY_PN}.pri || die
sed -i -e "s:-lBotan:${lib_botan}:" "${S}"/tests/manual/appwizards/appwizards.pro || die
# append botan refs to compiler flags
append-flags $(pkg-config --cflags --libs botan-${botan_version})
fi
}
src_configure() {
#the path must NOT be empty
local qtheaders="False"
use qml && qtheaders="/usr/include/qt4/"
eqmake4 \
${MY_PN}.pro \
IDE_LIBRARY_BASENAME="$(get_libdir)" \
QT_PRIVATE_HEADERS=${qtheaders}
}
src_install() {
#install wrapper
dobin bin/${MY_PN} bin/qtpromaker || die "dobin failed"
if use qml; then
# qmlpuppet component. Bug #367383
dobin bin/qmlpuppet || die "Failed to install qmlpuppet component"
fi
emake INSTALL_ROOT="${D%/}${EPREFIX}/usr" install_subtargets || die "emake install failed"
if use doc; then
emake INSTALL_ROOT="${D%/}${EPREFIX}/usr" install_inst_qch_docs || die "emake install qch_docs failed"
fi
# Install missing icon
doicon "${FILESDIR}"/${MY_PN}_logo_48.png || die "failed to install icon"
make_desktop_entry ${MY_PN} "Qt Creator" qtcreator_logo_48 \
'Qt;Development;IDE' || die "make_desktop_entry failed"
# Remove unneeded translations
for lang in ${LANGS}; do
if ! has $lang ${LINGUAS}; then
rm "${D}"/usr/share/${MY_PN}/translations/${MY_PN}_${lang}.qm \
|| die "failed to remove translations"
fi
done
}
|