mirror of
https://invent.kde.org/packaging/yocto-meta-kf5.git
synced 2026-01-29 21:08:43 +01:00
The change was performed as follows: - it was checked that the COPYING.MIT license was present with the initial commit and such each contributor was awere of the license - mail was around to all previous contributors to check this assumption (mail was not replied by Hannah and Sebastian); every reply was a confirmation of the assumed MIT licensing - all copyright information were recovered from the respective Git commits - reuse lint was to used to check the REUSE conformance
73 lines
1.8 KiB
PHP
73 lines
1.8 KiB
PHP
# SPDX-FileCopyrightText: 2018-2020 Volker Krause <vkrause@kde.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
DESCRIPTION = "KDELibs4Support"
|
|
HOMEPAGE = "https://api.kde.org/frameworks/kdelibs4support/html/index.html"
|
|
LICENSE = "LGPL-2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
|
|
"
|
|
PR = "r0"
|
|
|
|
DEPENDS = " \
|
|
qtbase \
|
|
qtsvg \
|
|
kcompletion \
|
|
kconfigwidgets \
|
|
kcrash \
|
|
kded \
|
|
kdesignerplugin \
|
|
kdesignerplugin-native \
|
|
kemoticons \
|
|
kglobalaccel \
|
|
kiconthemes \
|
|
kio \
|
|
kcoreaddons-native \
|
|
kconfig-native \
|
|
kauth-native \
|
|
knotifications \
|
|
kparts \
|
|
kunitconversion \
|
|
liburi-perl-native \
|
|
openssl \
|
|
"
|
|
|
|
SRC_URI = "git://invent.kde.org/frameworks/${BPN};nobranch=1;protocol=https"
|
|
S = "${WORKDIR}/git"
|
|
|
|
EXTRA_OECMAKE_class-target += " -DHAVE_GOOD_GETADDRINFO=ON"
|
|
|
|
inherit cmake_kf5
|
|
inherit ki18n
|
|
inherit perlnative
|
|
inherit kdoctools
|
|
|
|
do_compile_prepend() {
|
|
# desktoptojson needs to find installed service type files
|
|
export XDG_DATA_DIRS=${STAGING_DATADIR}:$XDG_DATA_DIRS
|
|
}
|
|
|
|
do_install_append_class-target() {
|
|
rm -rf ${D}${libdir}/plugins/designer
|
|
}
|
|
|
|
FILES_${PN} += " \
|
|
${libdir}/plugins/*.so \
|
|
${libdir}/plugins/kf5/kio/*.so \
|
|
${libdir}/plugins/kf5/kded/*.so \
|
|
${datadir}/kservices5/qimageioplugins/*.desktop \
|
|
${datadir}/kf5/kssl/ca-bundle.crt \
|
|
${datadir}/kf5/locale/currency/*.desktop \
|
|
${datadir}/kf5/locale/countries/*.desktop \
|
|
${datadir}/kf5/locale/countries/*/country.desktop \
|
|
${datadir}/kf5/locale/countries/*/flag.png \
|
|
${datadir}/kf5/kdoctools/customization/catalog4.xml \
|
|
${datadir}/kf5/kdoctools/customization/dtd/kdex.dtd \
|
|
"
|
|
|
|
FILES_${PN}-dev += " \
|
|
${datadir}/kf5/widgets/pics/*.png \
|
|
"
|
|
|
|
RDEPENDS_kdelibs4support += "perl"
|