forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://bugs.gentoo.org/807580 Closes: https://bugs.gentoo.org/801922 Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Davide Pesavento <[email protected]>
- Loading branch information
Showing
2 changed files
with
232 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST qt-creator-opensource-src-4.15.1.tar.xz 44655240 BLAKE2B 80d4b4688702f490ee478fa3efc34d72fcc586f27a480e310a3fbc5e2a5938cf61053ca87522884da2f4c2560f735a228f0fb24a63887a41fe5d21ff69f6344a SHA512 a735e2c14a4e9ca94ae209039017747f51320b465fdcf9d63e62bdf4d63d5099c6b114fa14af8869acf9290fba57be6bb756dcf78edcc6f3ac620c9e844241a3 | ||
DIST qt-creator-opensource-src-6.0.0.tar.xz 44361156 BLAKE2B 8853b69036b969233981d31236535b2bbb74e9cf9293f0100c5caf614a5e8e80c83b0a4b038ebbefa64a4fe0cb75728d5ed34f45d8ab9cd1e283dae943fbb348 SHA512 4d97b18cb5ad8388f3ea0f1cff3b4d0cb04251d2dba22770a7d9f387efbe670b9461a8d83e08a92aefb6472c36e19d0902ff42fd85fd224318b99c66d2526bbb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,231 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
LLVM_MAX_SLOT=13 | ||
PLOCALES="cs da de fr hr ja pl ru sl uk zh-CN zh-TW" | ||
|
||
inherit llvm qmake-utils virtualx xdg | ||
|
||
DESCRIPTION="Lightweight IDE for C++/QML development centering around Qt" | ||
HOMEPAGE="https://doc.qt.io/qtcreator/" | ||
|
||
if [[ ${PV} == *9999 ]]; then | ||
inherit git-r3 | ||
EGIT_REPO_URI="https://code.qt.io/${PN}/${PN}.git" | ||
else | ||
MY_PV=${PV/_/-} | ||
MY_P=${PN}-opensource-src-${MY_PV} | ||
[[ ${MY_PV} == ${PV} ]] && MY_REL=official || MY_REL=development | ||
SRC_URI="https://download.qt.io/${MY_REL}_releases/${PN/-}/$(ver_cut 1-2)/${MY_PV}/${MY_P}.tar.xz" | ||
S=${WORKDIR}/${MY_P} | ||
KEYWORDS="~amd64 ~arm ~x86" | ||
fi | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
QTC_PLUGINS=(android +autotest autotools:autotoolsprojectmanager baremetal bazaar beautifier boot2qt '+clang:clangcodemodel|clangformat|clangtools' | ||
clearcase +cmake:cmakeprojectmanager conan cppcheck ctfvisualizer cvs +designer docker +git glsl:glsleditor +help incredibuild | ||
+lsp:languageclient mcu:mcusupport mercurial meson:mesonprojectmanager modeling:modeleditor nim perforce perfprofiler python | ||
qbs:qbsprojectmanager +qmake:qmakeprojectmanager '+qml:qmldesigner|qmljseditor|qmlpreview|qmlprojectmanager|studiowelcome' | ||
qmlprofiler qnx remotelinux scxml:scxmleditor serialterminal silversearcher subversion valgrind webassembly) | ||
IUSE="doc systemd test webengine ${QTC_PLUGINS[@]%:*}" | ||
RESTRICT="!test? ( test )" | ||
REQUIRED_USE=" | ||
android? ( lsp ) | ||
boot2qt? ( remotelinux ) | ||
clang? ( lsp ) | ||
mcu? ( baremetal cmake ) | ||
python? ( lsp ) | ||
qml? ( qmake ) | ||
qnx? ( remotelinux ) | ||
" | ||
|
||
# minimum Qt version required | ||
QT_PV="5.15:5" | ||
|
||
BDEPEND=" | ||
>=dev-qt/linguist-tools-${QT_PV} | ||
virtual/pkgconfig | ||
doc? ( >=dev-qt/qdoc-${QT_PV} ) | ||
" | ||
CDEPEND=" | ||
>=dev-qt/qtconcurrent-${QT_PV} | ||
>=dev-qt/qtcore-${QT_PV} | ||
>=dev-qt/qtdeclarative-${QT_PV}[widgets] | ||
>=dev-qt/qtgui-${QT_PV} | ||
>=dev-qt/qtnetwork-${QT_PV}[ssl] | ||
>=dev-qt/qtprintsupport-${QT_PV} | ||
>=dev-qt/qtquickcontrols-${QT_PV} | ||
>=dev-qt/qtscript-${QT_PV} | ||
>=dev-qt/qtsql-${QT_PV}[sqlite] | ||
>=dev-qt/qtsvg-${QT_PV} | ||
>=dev-qt/qtwidgets-${QT_PV} | ||
>=dev-qt/qtx11extras-${QT_PV} | ||
>=dev-qt/qtxml-${QT_PV} | ||
>=kde-frameworks/syntax-highlighting-5.87:5 | ||
clang? ( | ||
>=dev-cpp/yaml-cpp-0.6.2:= | ||
|| ( | ||
sys-devel/clang:13 | ||
sys-devel/clang:12 | ||
sys-devel/clang:11 | ||
) | ||
<sys-devel/clang-$((LLVM_MAX_SLOT + 1)):= | ||
) | ||
designer? ( >=dev-qt/designer-${QT_PV} ) | ||
help? ( | ||
>=dev-qt/qthelp-${QT_PV} | ||
webengine? ( >=dev-qt/qtwebengine-${QT_PV}[widgets] ) | ||
) | ||
perfprofiler? ( dev-libs/elfutils ) | ||
serialterminal? ( >=dev-qt/qtserialport-${QT_PV} ) | ||
systemd? ( sys-apps/systemd:= ) | ||
" | ||
DEPEND="${CDEPEND} | ||
test? ( | ||
>=dev-qt/qtdeclarative-${QT_PV}[localstorage] | ||
>=dev-qt/qtquickcontrols2-${QT_PV} | ||
>=dev-qt/qttest-${QT_PV} | ||
>=dev-qt/qtxmlpatterns-${QT_PV}[qml] | ||
) | ||
" | ||
RDEPEND="${CDEPEND} | ||
sys-devel/gdb[python] | ||
cppcheck? ( dev-util/cppcheck ) | ||
cvs? ( dev-vcs/cvs ) | ||
git? ( dev-vcs/git ) | ||
mercurial? ( dev-vcs/mercurial ) | ||
qml? ( >=dev-qt/qtquicktimeline-${QT_PV} ) | ||
silversearcher? ( sys-apps/the_silver_searcher ) | ||
subversion? ( dev-vcs/subversion ) | ||
valgrind? ( dev-util/valgrind ) | ||
" | ||
# qt translations must also be installed or qt-creator translations won't be loaded | ||
for x in ${PLOCALES}; do | ||
IUSE+=" l10n_${x}" | ||
RDEPEND+=" l10n_${x}? ( >=dev-qt/qttranslations-${QT_PV} )" | ||
done | ||
unset x | ||
|
||
llvm_check_deps() { | ||
has_version -d "sys-devel/clang:${LLVM_SLOT}" | ||
} | ||
|
||
pkg_setup() { | ||
use clang && llvm_pkg_setup | ||
} | ||
|
||
src_prepare() { | ||
default | ||
|
||
# disable unwanted plugins | ||
for plugin in "${QTC_PLUGINS[@]#[+-]}"; do | ||
if ! use ${plugin%:*}; then | ||
sed -i -re "s/(^\s+|\s*SUBDIRS\s*\+=.*)\<(${plugin#*:})\>(.*)/\1\3/" \ | ||
src/plugins/plugins.pro || die "failed to disable ${plugin%:*} plugin" | ||
fi | ||
done | ||
sed -i -re '/\<(ios|updateinfo|winrt)\>/d' src/plugins/plugins.pro || die | ||
|
||
# avoid building unused support libraries and tools | ||
if ! use clang; then | ||
sed -i -e '/yaml-cpp/d' src/libs/libs.pro || die | ||
sed -i -e '/clangbackend/d' src/tools/tools.pro || die | ||
fi | ||
if ! use glsl; then | ||
sed -i -e '/glsl/d' src/libs/libs.pro || die | ||
fi | ||
if ! use lsp; then | ||
sed -i -e '/languageserverprotocol/d' src/libs/libs.pro tests/auto/auto.pro || die | ||
fi | ||
if ! use modeling; then | ||
sed -i -e '/modelinglib/d' src/libs/libs.pro || die | ||
fi | ||
if ! use perfprofiler; then | ||
rm -r src/tools/perfparser || die | ||
if ! use ctfvisualizer && ! use qmlprofiler; then | ||
sed -i -e '/tracing/d' src/libs/libs.pro tests/auto/auto.pro || die | ||
fi | ||
fi | ||
if ! use qmake; then | ||
sed -i -e '/buildoutputparser/d' src/tools/tools.pro || die | ||
fi | ||
if ! use qml; then | ||
sed -i -e '/advanceddockingsystem\|qmleditorwidgets/d' src/libs/libs.pro || die | ||
sed -i -e '/qml2puppet/d' src/tools/tools.pro || die | ||
sed -i -e '/qmldesigner\|qmlprojectmanager/d' tests/auto/qml/qml.pro || die | ||
fi | ||
if ! use valgrind; then | ||
sed -i -e '/valgrindfake/d' src/tools/tools.pro || die | ||
sed -i -e '/valgrind/d' tests/auto/auto.pro || die | ||
fi | ||
|
||
# automagic dep on qtwebengine | ||
if ! use webengine; then | ||
sed -i -e 's/isEmpty(QT\.webenginewidgets\.name)/true/' src/plugins/help/help.pro || die | ||
fi | ||
|
||
# disable broken or unreliable tests | ||
sed -i -e 's/\(manual\|tools\|unit\)//g' tests/tests.pro || die | ||
sed -i -e '/dumpers\.pro/d' tests/auto/debugger/debugger.pro || die | ||
sed -i -e '/CONFIG -=/s/$/ testcase/' tests/auto/extensionsystem/pluginmanager/correctplugins1/plugin?/plugin?.pro || die | ||
sed -i -e '/reformatter/d' tests/auto/qml/qml.pro || die | ||
sed -i -e 's/\<\(imports\|\)check\>//' tests/auto/qml/codemodel/codemodel.pro || die | ||
sed -i -e '/timelineitemsrenderpass/d' tests/auto/tracing/tracing.pro || die | ||
sed -i -e '/qtcprocess/d' tests/auto/utils/utils.pro || die | ||
|
||
# do not install test binaries | ||
sed -i -e '/CONFIG +=/s/$/ no_testcase_installs/' tests/auto/{qttest.pri,json/json.pro} || die | ||
|
||
# fix path to some clang headers | ||
sed -i -e "/^CLANG_INCLUDE_DIR\s*=/s:\$\${LLVM_LIBDIR}:${EPREFIX}/usr/lib:" src/shared/clang/clang_defines.pri || die | ||
|
||
# fix translations | ||
local lang languages= | ||
for lang in ${PLOCALES}; do | ||
use l10n_${lang} && languages+=" ${lang/-/_}" | ||
done | ||
sed -i -e "/^LANGUAGES\s*=/s:=.*:=${languages}:" share/qtcreator/translations/translations.pro || die | ||
|
||
# remove bundled syntax-highlighting | ||
rm -r src/libs/3rdparty/syntax-highlighting || die | ||
|
||
# remove bundled yaml-cpp | ||
rm -r src/libs/3rdparty/yaml-cpp || die | ||
|
||
# remove bundled qbs | ||
rm -r src/shared/qbs || die | ||
|
||
# TODO: unbundle sqlite | ||
} | ||
|
||
src_configure() { | ||
eqmake5 IDE_LIBRARY_BASENAME="$(get_libdir)" \ | ||
IDE_PACKAGE_MODE=1 \ | ||
KSYNTAXHIGHLIGHTING_LIB_DIR="${EPREFIX}/usr/$(get_libdir)" \ | ||
KSYNTAXHIGHLIGHTING_INCLUDE_DIR="${EPREFIX}/usr/include/KF5/KSyntaxHighlighting" \ | ||
$(use clang && echo LLVM_INSTALL_DIR="$(get_llvm_prefix ${LLVM_MAX_SLOT})") \ | ||
$(use qbs && echo QBS_INSTALL_DIR="${EPREFIX}/usr") \ | ||
$(use systemd && echo CONFIG+=journald) \ | ||
$(use test && echo BUILD_TESTS=1) | ||
} | ||
|
||
src_test() { | ||
cd tests/auto && virtx default | ||
} | ||
|
||
src_install() { | ||
emake INSTALL_ROOT="${ED}/usr" install | ||
|
||
dodoc dist/{changes-*,known-issues} | ||
|
||
# install documentation | ||
if use doc; then | ||
emake docs | ||
# don't use ${PF} or the doc will not be found | ||
insinto /usr/share/doc/qtcreator | ||
doins share/doc/qtcreator/qtcreator{,-dev}.qch | ||
docompress -x /usr/share/doc/qtcreator/qtcreator{,-dev}.qch | ||
fi | ||
} |