blob: 21b1aab2a48925ef7a945d1d3228c262c54eb62a (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/qt-creator/qt-creator-2.0.1.ebuild,v 1.5 2010/11/15 18:55:01 hwoarang Exp $
EAPI="2"
LANGS="de es fr it ja pl ru sl"
inherit qt4-r2 multilib
MY_PN="${PN/-/}"
MY_PV="${PV/_/-}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="Lightweight IDE for C++ development centering around Qt"
HOMEPAGE="http://qt.nokia.com/products/developer-tools"
SRC_URI="http://get.qt.nokia.com/${MY_PN}/${MY_P}-src.zip"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="bineditor bookmarks +cmake cvs debug +designer doc examples fakevim git
kde mercurial perforce +qml qt3support qtscript rss subversion"
QTVER="4.7.0:4"
DEPEND="~x11-libs/qt-assistant-${QTVER}[doc?]"
RDEPEND="${DEPEND}
~x11-libs/qt-sql-${QTVER}
~x11-libs/qt-svg-${QTVER}
~x11-libs/qt-test-${QTVER}
~x11-libs/qt-webkit-${QTVER}
!kde? ( || ( ~x11-libs/qt-phonon-${QTVER} media-sound/phonon ) )
kde? ( media-sound/phonon )
cmake? ( dev-util/cmake )
cvs? ( dev-vcs/cvs )
sys-devel/gdb
examples? ( ~x11-libs/qt-demo-${QTVER} )
git? ( dev-vcs/git )
mercurial? ( dev-vcs/mercurial )
!qml? ( ~x11-libs/qt-gui-${QTVER}[qt3support?] )
qml? (
~x11-libs/qt-declarative-${QTVER}[private-headers]
~x11-libs/qt-core-${QTVER}[private-headers]
~x11-libs/qt-gui-${QTVER}[qt3support?,private-headers]
~x11-libs/qt-script-${QTVER}[private-headers]
)
qtscript? ( >x11-libs/qt-script-${QTVER} )
subversion? ( dev-vcs/subversion )"
PLUGINS="bookmarks bineditor cmake cvs designer fakevim git mercurial perforce
qml qtscript subversion"
S="${WORKDIR}"/"${MY_P}"-src
src_prepare() {
qt4-r2_src_prepare
# 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
plugins="qmljseditor"
sed -i "/^include(qml\/qml.pri)/d" \
src/plugins/debugger/debugger.pro
fi
if [[ ${plugin} == "designer" ]]; then
sed -i "/plugin_qt4projectmanager/s:^:#:" \
src/plugins/plugins.pro \
|| die "Failed to disable qt4projectmanager plugin"
fi
sed -i "/plugin_${plugin}/s:^:#:" src/plugins/plugins.pro \
|| die "Failed to disable ${plugin} plugin"
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
fi
# add rpath to make qtcreator actual find its *own* plugins
sed -i "/^LIBS/s:+=:& -Wl,-rpath,/usr/$(get_libdir)/${MY_PN} :" qtcreator.pri || die
}
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} || die "Failed to install launcher"
emake INSTALL_ROOT="${D%/}${EPREFIX}/usr" install_subtargets || die
if use doc;then
emake INSTALL_ROOT="${D%/}${EPREFIX}/usr" install_qch_docs || die
fi
make_desktop_entry ${MY_PN} QtCreator qtcreator_logo_48 \
'Qt;Development;IDE' || die
# install additional translations
insinto /usr/share/${MY_PN}/translations/
for x in ${LINGUAS}; do
for lang in ${LANGS}; do
if [[ ${x} == ${lang} ]]; then
cd "${S}"/share/${MY_PN}/translations
lrelease ${MY_PN}_${x}.ts -qm ${MY_PN}_${x}.qm || die
doins ${MY_PN}_${x}.qm || die
fi
done
done
}
|