Compare commits
32 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e72f9e14ce | ||
|
|
d48aa6c934 | ||
|
|
6f5a2513a9 | ||
|
|
48ab2dad10 | ||
|
|
641aabf595 | ||
|
|
c3e6b0c2eb | ||
|
|
9346cf05fa | ||
|
|
cfe91e5789 | ||
|
|
2535943408 | ||
|
|
81bafc6045 | ||
|
|
d67918a112 | ||
|
|
2b7e58e352 | ||
|
|
7f9f0f98a4 | ||
|
|
746ed64373 | ||
|
|
530170adb5 | ||
|
|
f9e77021de | ||
|
|
6c670a475d | ||
|
|
99859ac8f2 | ||
|
|
93345ef5d0 | ||
|
|
5092528e63 | ||
|
|
eedf8d776d | ||
|
|
cfdd7cef66 | ||
|
|
c0975ababa | ||
|
|
93bf5449fa | ||
|
|
23d1d614ca | ||
|
|
0c85f97c44 | ||
|
|
f808a07052 | ||
|
|
08e507efbb | ||
|
|
8dde8f5444 | ||
|
|
5f6e8f07fb | ||
|
|
610819dace | ||
|
|
50fb943746 |
17
README
Normal file
17
README
Normal file
@@ -0,0 +1,17 @@
|
||||
OE layer to desktop environments based on qt5
|
||||
|
||||
This layer depends on:
|
||||
|
||||
URI: git://git.openembedded.org/openembedded-core
|
||||
branch: master
|
||||
revision: HEAD
|
||||
|
||||
URI: git://github.com/meta-qt5/meta-qt5.git
|
||||
branch: master
|
||||
revision: HEAD
|
||||
|
||||
URI: git://git.openembedded.org/meta-openembedded
|
||||
branch: master
|
||||
revision: HEAD
|
||||
|
||||
Layer maintainer: Andreas Müller <schnitzeltony@gmail.com>
|
||||
27
README.md
27
README.md
@@ -1,27 +0,0 @@
|
||||
OE layer to desktop environments based on Qt5
|
||||
---------------------------------------------
|
||||
|
||||
|
||||
Layer dependencies:
|
||||
----------------------
|
||||
see [layer.conf](conf/layer.conf) for dependencies and https://layers.openembedded.org/layerindex/branch/master/layers/ where to find layers
|
||||
|
||||
|
||||
Contributing
|
||||
------------
|
||||
* Submit any patches against the `meta-qt5-extra` layer by using the GitHub pull-request feature.
|
||||
|
||||
|
||||
Policies
|
||||
--------
|
||||
* Please do not send private emails to maintainers. For questions/suggestions.. use GitHub issues.
|
||||
* Pull requests should follow [OE-Styleguide](https://www.openembedded.org/wiki/Styleguide) with the following additions:
|
||||
* Use 4 spaces for indention always
|
||||
* For splitting of long list values use four-space indentation on sucessive lines and prefer the closing quote as the first character ([OE-Styleguide](https://www.openembedded.org/wiki/Styleguide) - second example)
|
||||
* Pull-requests with patches fixing issues for musl, clang or gold-linker are accepeted only if patches have upstream-status "Applied" or "Backport" and contain a link to the upstream patch.
|
||||
|
||||
|
||||
Maintainers
|
||||
-----------
|
||||
|
||||
Layer maintainer: Andreas Müller <schnitzeltony@gmail.com>
|
||||
@@ -81,7 +81,7 @@ python () {
|
||||
if get_flags_ignore(cmakehideflags):
|
||||
return
|
||||
|
||||
pn = d.getVar('PN')
|
||||
pn = d.getVar('PN', True)
|
||||
if cmakehideflags:
|
||||
for flag, flagval in sorted(cmakehideflags.items()):
|
||||
items = flagval.split(",")
|
||||
@@ -96,7 +96,7 @@ python () {
|
||||
|
||||
# 4. Handle CMAKE_ALIGN_SYSROOT
|
||||
python do_populate_sysroot_append() {
|
||||
pn = d.getVar('PN')
|
||||
pn = d.getVar('PN', True)
|
||||
|
||||
# parse single parameter in CMAKE_ALIGN_SYSROOT[..] and return array of line strings extracted
|
||||
def parseparam(param, flag):
|
||||
@@ -107,7 +107,7 @@ python do_populate_sysroot_append() {
|
||||
|
||||
# handle file in WORKDIR
|
||||
if cmd == '-f' or cmd == '-F':
|
||||
filename = "%s/%s" % (d.getVar('WORKDIR'), cmdparam)
|
||||
filename = "%s/%s" % (d.getVar('WORKDIR', True), cmdparam)
|
||||
if os.path.isfile(filename):
|
||||
fd = open(filename, 'r')
|
||||
str = fd.read()
|
||||
@@ -144,7 +144,7 @@ python do_populate_sysroot_append() {
|
||||
return
|
||||
|
||||
# check if cmake files were installed to sysroot
|
||||
tmpfile = d.getVar('CMAKEINSTALLED')
|
||||
tmpfile = d.getVar('CMAKEINSTALLED', True)
|
||||
if (not os.path.isfile(tmpfile)) or os.path.getsize(tmpfile) == 0:
|
||||
bb.warn("There were no cmake files installed by %s" % pn)
|
||||
else:
|
||||
@@ -157,7 +157,7 @@ python do_populate_sysroot_append() {
|
||||
if len(cmakedir) == 0:
|
||||
bb.fatal('Directory in CMAKE_ALIGN_SYSROOT[%s] must not be empty in %s' % (flag, pn))
|
||||
# check if this directory is created by us
|
||||
pipe = os.popen('grep %s %s' % (cmakedir, d.getVar('CMAKEINSTALLED')))
|
||||
pipe = os.popen('grep %s %s' % (cmakedir, d.getVar('CMAKEINSTALLED', True)))
|
||||
matching_files = pipe.readlines()
|
||||
pipe.close()
|
||||
if len(matching_files) == 0:
|
||||
|
||||
@@ -5,7 +5,7 @@ CMAKEINSTALLED = "${WORKDIR}/staged_cmake_files"
|
||||
|
||||
# 1. remove tmp file from last build
|
||||
python do_populate_sysroot_prepend() {
|
||||
tmpfile = d.getVar('CMAKEINSTALLED')
|
||||
tmpfile = d.getVar('CMAKEINSTALLED', True)
|
||||
if os.path.isfile(tmpfile):
|
||||
os.remove(tmpfile)
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
inherit kde-base
|
||||
|
||||
KDE_APP_VERSION = "19.08.3"
|
||||
KDE_APP_VERSION = "18.12.3"
|
||||
|
||||
SRC_URI = "${KDE_MIRROR}/stable/applications/${PV}/src/${BPN}-${PV}.tar.xz"
|
||||
|
||||
|
||||
@@ -17,20 +17,13 @@ ${KDE_MIRROR} http://kde.c3sl.ufpr.br \n \
|
||||
SRC_URI = "${KDE_MIRROR}/stable/${BPN}/${PV}/src/${BPN}-${PV}.tar.xz"
|
||||
|
||||
# extra-cmake-modules cause dependent to check for python
|
||||
inherit cmake_qt5_extra python3native
|
||||
|
||||
DEPENDS += "libxml2-native"
|
||||
inherit cmake_qt5_extra pythonnative
|
||||
|
||||
do_compile_prepend() {
|
||||
export XDG_DATA_HOME=${STAGING_DATADIR}
|
||||
}
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kf5 \
|
||||
${datadir}/qlogging-categories5 \
|
||||
${libdir}/plugins/kf5 \
|
||||
${libexecdir}/kf5 \
|
||||
"
|
||||
FILES_${PN} += "${libdir}/plugins/kf5 ${datadir}/kf5 ${libexecdir}/kf5"
|
||||
|
||||
EXTRA_OECMAKE += " \
|
||||
-DECM_MKSPECS_INSTALL_DIR=${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/modules \
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
inherit kde-kf5
|
||||
|
||||
SRC_URI = "${KDE_MIRROR}/stable/frameworks/5.64/portingAids/${BPN}-${PV}.tar.xz"
|
||||
SRC_URI = "${KDE_MIRROR}/stable/frameworks/5.56/portingAids/${BPN}-${PV}.tar.xz"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
inherit kde-base
|
||||
|
||||
KF5_VERSION = "5.64.0"
|
||||
KF5_VERSION = "5.56.0"
|
||||
|
||||
SRC_URI = "${KDE_MIRROR}/stable/frameworks/5.64/${BPN}-${PV}.tar.xz"
|
||||
SRC_URI = "${KDE_MIRROR}/stable/frameworks/5.56/${BPN}-${PV}.tar.xz"
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
inherit kde-base
|
||||
|
||||
PLASMA_VERSION = "5.17.3"
|
||||
PLASMA_VERSION = "5.15.3"
|
||||
PLASMA_FIXUP_VERSION = "5.15.3.2"
|
||||
|
||||
SRC_URI = "${KDE_MIRROR}/stable/plasma/${PLASMA_VERSION}/${BPN}-${PV}.tar.xz"
|
||||
|
||||
|
||||
53
classes/lv2-postinst-helper.bbclass
Normal file
53
classes/lv2-postinst-helper.bbclass
Normal file
@@ -0,0 +1,53 @@
|
||||
# Helper class to handle ontarget-postinst creation of lv2 turtle files
|
||||
|
||||
# File created during compile usually. To create this file makefiles have to be
|
||||
# aligned - see do_configure_prepend at zynaddsubfx or distrho-ports. The file
|
||||
# is expected with the following format
|
||||
# lv2-ttl-generator <path>/plugin.so
|
||||
LV2-TURTLE-BUILD-DATA = "${WORKDIR}/lv2-ttl-generator-data"
|
||||
|
||||
# E.g zynaddsubfx needs to create dummy lv2 turtle files to keep install sane.
|
||||
# To delete them automatically (see below) the contain a dummy string:
|
||||
LV2-DUMMY-TURTLE-STR = "lv2-dummy-turtle-string"
|
||||
|
||||
# To make ontarget postinst/prerm happen, the names of all plugins with their
|
||||
# paths as installed on target a stored in a file called lv2-postinst-manifest
|
||||
LV2-POSTINST-MANIFEST = "${datadir}/${BPN}/lv2-postinst-manifest"
|
||||
|
||||
do_install_append() {
|
||||
# remove dummy lv2-turtles again
|
||||
cd ${D}/${libdir}/lv2
|
||||
for tfile in `grep -rl ${LV2-DUMMY-TURTLE-STR}`; do
|
||||
rm $tfile
|
||||
done
|
||||
|
||||
# create postinst manifest
|
||||
install -d ${D}`dirname ${LV2-POSTINST-MANIFEST}`
|
||||
for sofile in `cat ${LV2-TURTLE-BUILD-DATA} | awk '{ print $2 }'`; do
|
||||
sofile=`basename $sofile`
|
||||
installed=`find ${D}${libdir}/lv2 -name $sofile | sed 's|${D}||g'`
|
||||
echo $installed >> ${D}${LV2-POSTINST-MANIFEST}
|
||||
done
|
||||
}
|
||||
|
||||
|
||||
pkg_postinst_ontarget_${PN}-lv2() {
|
||||
oldpath=`pwd`
|
||||
for sofile in `cat ${LV2-POSTINST-MANIFEST}`; do
|
||||
cd `dirname "$sofile"`
|
||||
lv2-ttl-generator "$sofile"
|
||||
done
|
||||
cd $oldpath
|
||||
}
|
||||
|
||||
pkg_prerm_${PN}-lv2() {
|
||||
for sofile in `cat ${LV2-POSTINST-MANIFEST}`; do
|
||||
path=`dirname "$sofile"`
|
||||
for turtle in `find $path -name '*.ttl'`; do
|
||||
rm $turtle
|
||||
done
|
||||
done
|
||||
}
|
||||
|
||||
FILES_${PN}-lv2 += "${LV2-POSTINST-MANIFEST}"
|
||||
RDEPENDS_${PN}-lv2 += "lv2-ttl-generator"
|
||||
8
classes/pack_audio_plugins.bbclass
Normal file
8
classes/pack_audio_plugins.bbclass
Normal file
@@ -0,0 +1,8 @@
|
||||
# Auto package audio plugins
|
||||
|
||||
PACKAGES =+ "${PN}-dssi ${PN}-ladspa ${PN}-lv2 ${PN}-vst"
|
||||
|
||||
FILES_${PN}-dssi += "${libdir}/dssi"
|
||||
FILES_${PN}-ladspa += "${libdir}/ladspa"
|
||||
FILES_${PN}-lv2 += "${libdir}/lv2"
|
||||
FILES_${PN}-vst += "${libdir}/vst"
|
||||
@@ -13,9 +13,9 @@ DEPENDS += "qemu-native"
|
||||
# an absolute path.
|
||||
|
||||
def qemu_run_binary_local(data, rootfs_path, binary):
|
||||
libdir = rootfs_path + data.getVar("libdir")
|
||||
base_libdir = rootfs_path + data.getVar("base_libdir")
|
||||
extra_libdir = data.getVar("QEMU_EXTRA_LIBDIR")
|
||||
libdir = rootfs_path + data.getVar("libdir", False)
|
||||
base_libdir = rootfs_path + data.getVar("base_libdir", False)
|
||||
extra_libdir = data.getVar("QEMU_EXTRA_LIBDIR", False)
|
||||
if extra_libdir:
|
||||
return qemu_wrapper_cmdline(data, rootfs_path, [libdir, base_libdir, extra_libdir]) + binary
|
||||
else:
|
||||
|
||||
@@ -13,26 +13,26 @@ FILES_${PN}_remove = "${datadir}/${BPN}"
|
||||
python qt_do_split_locales() {
|
||||
import glob
|
||||
|
||||
if (d.getVar('PACKAGE_NO_LOCALE') == '1'):
|
||||
if (d.getVar('PACKAGE_NO_LOCALE', True) == '1'):
|
||||
bb.debug(1, "package requested not splitting locales")
|
||||
return
|
||||
|
||||
packages = (d.getVar('PACKAGES') or "").split()
|
||||
packages = (d.getVar('PACKAGES', True) or "").split()
|
||||
|
||||
datadir = d.getVar('datadir')
|
||||
datadir = d.getVar('datadir', True)
|
||||
if not datadir:
|
||||
bb.note("datadir not defined")
|
||||
return
|
||||
|
||||
dvar = d.getVar('PKGD')
|
||||
pn = d.getVar('LOCALEBASEPN')
|
||||
dvar = d.getVar('PKGD', True)
|
||||
pn = d.getVar('LOCALEBASEPN', True)
|
||||
|
||||
if pn + '-locale' in packages:
|
||||
packages.remove(pn + '-locale')
|
||||
|
||||
# extract locales from *.qm files into list in locales
|
||||
locales = []
|
||||
for transvar in d.getVar('QT_TRANSLATION_FILES').split():
|
||||
for transvar in d.getVar('QT_TRANSLATION_FILES', True).split():
|
||||
translocation = '%s%s' % (dvar, transvar)
|
||||
transfiles = glob.glob(translocation)
|
||||
for l in sorted(transfiles):
|
||||
@@ -44,16 +44,16 @@ python qt_do_split_locales() {
|
||||
bb.debug(1, "No locale files in this package")
|
||||
return
|
||||
|
||||
summary = d.getVar('SUMMARY') or pn
|
||||
description = d.getVar('DESCRIPTION') or ""
|
||||
locale_section = d.getVar('LOCALE_SECTION')
|
||||
mlprefix = d.getVar('MLPREFIX') or ""
|
||||
summary = d.getVar('SUMMARY', True) or pn
|
||||
description = d.getVar('DESCRIPTION', True) or ""
|
||||
locale_section = d.getVar('LOCALE_SECTION', True)
|
||||
mlprefix = d.getVar('MLPREFIX', True) or ""
|
||||
for l in sorted(locales):
|
||||
ln = legitimize_package_name(l)
|
||||
pkg = pn + '-locale-' + ln
|
||||
packages.append(pkg)
|
||||
files = ''
|
||||
for transvar in d.getVar('QT_TRANSLATION_FILES').split():
|
||||
for transvar in d.getVar('QT_TRANSLATION_FILES', True).split():
|
||||
files = '%s %s' % (files, transvar.replace('*.qm', '*_%s.qm' % l))
|
||||
d.setVar('FILES_' + pkg, files )
|
||||
d.setVar('RRECOMMENDS_' + pkg, '%svirtual-locale-%s' % (mlprefix, ln))
|
||||
|
||||
37
classes/wafold.bbclass
Normal file
37
classes/wafold.bbclass
Normal file
@@ -0,0 +1,37 @@
|
||||
# avoids build breaks when using no-static-libs.inc
|
||||
DISABLE_STATIC = ""
|
||||
|
||||
EXTRA_OECONF_append = " ${PACKAGECONFIG_CONFARGS}"
|
||||
|
||||
python waf_preconfigure() {
|
||||
import subprocess
|
||||
from distutils.version import StrictVersion
|
||||
subsrcdir = d.getVar('S')
|
||||
wafbin = os.path.join(subsrcdir, 'waf')
|
||||
try:
|
||||
result = subprocess.check_output([wafbin, '--version'], cwd=subsrcdir, stderr=subprocess.STDOUT)
|
||||
version = result.decode('utf-8').split()[1]
|
||||
if StrictVersion(version) >= StrictVersion("1.8.7"):
|
||||
d.setVar("WAF_EXTRA_CONF", "--bindir=${bindir} --libdir=${libdir}")
|
||||
except subprocess.CalledProcessError as e:
|
||||
bb.warn("Unable to execute waf --version, exit code %d. Assuming waf version without bindir/libdir support." % e.returncode)
|
||||
except FileNotFoundError:
|
||||
bb.fatal("waf does not exist in %s" % subsrcdir)
|
||||
}
|
||||
|
||||
do_configure[prefuncs] += "waf_preconfigure"
|
||||
|
||||
wafold_do_configure() {
|
||||
${S}/waf configure --prefix=${prefix} ${WAF_EXTRA_CONF} ${EXTRA_OECONF}
|
||||
}
|
||||
|
||||
do_compile[progress] = "outof:^\[\s*(\d+)/\s*(\d+)\]\s+"
|
||||
wafold_do_compile() {
|
||||
${S}/waf build ${@oe.utils.parallel_make_argument(d, '-j%d', limit=64)}
|
||||
}
|
||||
|
||||
wafold_do_install() {
|
||||
${S}/waf install --destdir=${D}
|
||||
}
|
||||
|
||||
EXPORT_FUNCTIONS do_configure do_compile do_install
|
||||
@@ -2,7 +2,7 @@
|
||||
BBPATH .= ":${LAYERDIR}"
|
||||
|
||||
# recipes
|
||||
BBFILES += "${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*/*.bb ${LAYERDIR}/recipes-*/*/*/*/*.bb"
|
||||
BBFILES += "${LAYERDIR}/recipes-*/*.bb ${LAYERDIR}/recipes-*/*/*.bb ${LAYERDIR}/recipes-*/*/*/*.bb ${LAYERDIR}/recipes-*/*/*/*/*.bb"
|
||||
# appends
|
||||
BBFILES += "${LAYERDIR}/extends-*/*.bb ${LAYERDIR}/extends-*/*.bbappend"
|
||||
|
||||
@@ -10,16 +10,8 @@ BBFILE_COLLECTIONS += "meta-qt5-extra"
|
||||
BBFILE_PATTERN_meta-qt5-extra := "^${LAYERDIR}/"
|
||||
BBFILE_PRIORITY_meta-qt5-extra = "20"
|
||||
|
||||
LAYERDEPENDS_meta-qt5-extra = " \
|
||||
core \
|
||||
qt5-layer \
|
||||
openembedded-layer \
|
||||
networking-layer \
|
||||
multimedia-layer \
|
||||
gnome-layer \
|
||||
meta-python \
|
||||
"
|
||||
LAYERSERIES_COMPAT_meta-qt5-extra = "zeus"
|
||||
LAYERDEPENDS_meta-qt5-extra = "core qt5-layer openembedded-layer networking-layer multimedia-layer"
|
||||
LAYERSERIES_COMPAT_meta-qt5-extra = "sumo thud"
|
||||
|
||||
LICENSE_PATH += "${LAYERDIR}/files/licenses"
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
PACKAGECONFIG += "cxx"
|
||||
@@ -1,103 +0,0 @@
|
||||
COMMERCIAL LICENSE AGREEMENT
|
||||
FOR COMMERCIAL VERSIONS
|
||||
Version 1.0
|
||||
|
||||
Copyright of this license text (C) 2001 Trolltech AS and (C) 2002-2016
|
||||
Klarälvdalens Datakonsult AB. All rights reserved. License text used
|
||||
with kind permission of Trolltech AS. The software and accompanying
|
||||
material is Copyright (C) 2010-2019 Klarälvdalens Datakonsult AB.
|
||||
|
||||
This non-exclusive non-transferable License Agreement ("Agreement") is
|
||||
between you ("Licensee") and Klarälvdalens Datakonsult AB (KDAB), and
|
||||
pertains to the Klarälvdalens Datakonsult AB software product(s)
|
||||
accompanying this Agreement, which include(s) computer software and
|
||||
may include "online" or electronic documentation, associated media,
|
||||
and printed materials, including the source code, example programs and
|
||||
the documentation ("Software").
|
||||
|
||||
|
||||
COPYRIGHT AND RESTRICTIONS
|
||||
|
||||
1. All intellectual property rights in the Software are owned by KDAB
|
||||
and are protected by Swedish copyright laws, other applicable
|
||||
copyright laws, and international treaty provisions. KDAB retains all
|
||||
rights not expressly granted. No title, property rights or copyright
|
||||
in the Software or in any modifications to the Software shall pass to
|
||||
the Licensee under any circumstances. The Software is licensed, not
|
||||
sold.
|
||||
|
||||
2. By installing, copying, or otherwise using the Software, you agree
|
||||
to be bound by the terms of this agreement. If you do not agree to the
|
||||
terms of this Agreement, do not install, copy, or otherwise use the
|
||||
Software.
|
||||
|
||||
3. Upon your acceptance of the terms and conditions of this Agreement,
|
||||
KDAB grants you the right to use the Software in the manner provided
|
||||
below.
|
||||
|
||||
4. KDAB grants to you as an individual a personal, nonexclusive,
|
||||
non-transferable license to make and use copies of the Software for
|
||||
the sole purposes of designing, developing, testing and distributing
|
||||
your software product(s) ("Applications"). You may install copies of
|
||||
the Software on an unlimited number of computers provided that you are
|
||||
the only individual using the Software. If you are an entity, KDAB
|
||||
grants you the right to designate one, and only one, individual within
|
||||
your organization who shall have the sole right to use the Software in
|
||||
the manner provided above.
|
||||
|
||||
5. The license granted in this Agreement for you to create and
|
||||
distribute your own Applications is subject to all of the following
|
||||
conditions: (i) all copies of the Applications you create must bear a
|
||||
valid copyright notice, either your own or the copyright notice that
|
||||
appears on the Software; (ii) you may not remove or alter any
|
||||
copyright, trademark or other proprietary rights notice contained in
|
||||
any portion of the Software; (iii) you will indemnify and hold KDAB, its
|
||||
related companies and its suppliers, harmless from and against any
|
||||
claims or liabilities arising out of the use and/or reproduction of
|
||||
your Applications; (iv) your Applications must be written using a
|
||||
licensed, registered copy of the Software; (v) your Applications must
|
||||
add primary and substantial functionality to the Software; (vi) your
|
||||
Applications may not pass on functionality which in any way makes it
|
||||
possible for others to create Applications with the Software; (vii)
|
||||
your Applications may not compete with the Software; (viii) you may
|
||||
not use KDAB's or any of its suppliers' names, logos, or trademarks to
|
||||
market your programs, except to state that your program was written
|
||||
using the Software.
|
||||
|
||||
6. LICENSEE'S BREACH OF CONTRACT
|
||||
In addition to penalties, other sanctions and the like as stated in
|
||||
the Swedish Copyright Act (1960:729), or successive legislation as it
|
||||
may appear, the Licensee agrees to pay a Contractual Fine in case of
|
||||
his/her/their breach of any of the above mentioned obligations,
|
||||
including but not limited to, the Licensee's obligation to let only
|
||||
one person per license use the Software as stated under above. The
|
||||
Contractual Fine is EUR 5000 and is payable by the Licensee to the
|
||||
Licenser immediately upon the Licenser having reasonably demonstrated
|
||||
that the Licensee is in breach of his obligations in this Agreement.
|
||||
|
||||
7. WARRANTY DISCLAIMER
|
||||
THE SOFTWARE IS LICENSED TO YOU "AS IS". TO THE MAXIMUM EXTENT
|
||||
PERMITTED BY APPLICABLE LAW, KDAB ON BEHALF OF ITSELF AND ITS SUPPLIERS,
|
||||
DISCLAIMS ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR IMPLIED,
|
||||
INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT WITH
|
||||
REGARD TO THE SOFTWARE.
|
||||
|
||||
8. LIMITATION OF LIABILITY
|
||||
IF, KDAB'S WARRANTY DISCLAIMER NOTWITHSTANDING, KDAB IS HELD LIABLE TO
|
||||
YOU BASED ON THE SOFTWARE, KDAB'S ENTIRE LIABILITY TO YOU AND YOUR
|
||||
EXCLUSIVE REMEDY SHALL BE, AT REPAIR OR REPLACEMENT OF THE SOFTWARE,
|
||||
PROVIDED YOU RETURN TO KDAB ALL COPIES OF THE SOFTWARE AS ORIGINALLY
|
||||
DELIVERED TO YOU. KDAB SHALL NOT UNDER ANY CIRCUMSTANCES BE LIABLE TO
|
||||
YOU BASED ON FAILURE OF THE SOFTWARE IF THE FAILURE RESULTED FROM
|
||||
ACCIDENT, ABUSE OR MISAPPLICATION, NOR SHALL KDAB UNDER ANY
|
||||
CIRCUMSTANCES BE LIABLE FOR SPECIAL DAMAGES, PUNITIVE OR EXEMPLARY
|
||||
DAMAGES, DAMAGES FOR LOSS OF PROFITS OR INTERRUPTION OF BUSINESS OR
|
||||
FOR LOSS OR CORRUPTION OF DATA.
|
||||
|
||||
9. This Agreement may only be modified in writing signed by you and an
|
||||
authorized officer of KDAB. All terms of any purchase order or other
|
||||
ordering document shall be superseded by this Agreement.
|
||||
|
||||
10. This Agreement shall be construed, interpreted and governed by the
|
||||
laws of Sweden, the venue to be Sunne Tingsratt.
|
||||
@@ -1,147 +0,0 @@
|
||||
COMMERCIAL LICENSE AGREEMENT
|
||||
FOR COMMERCIAL VERSIONS
|
||||
December 20, 2016
|
||||
|
||||
|
||||
IMPORTANT-READ CAREFULLY: This Klarälvdalens Datakonsult AB End-User
|
||||
License Agreement ("EULA") is a legal agreement between you (either an
|
||||
individual or a legal entity) and Klarälvdalens Datakonsult AB
|
||||
("KDAB") for the Klarälvdalens Datakonsult AB software product(s)
|
||||
accompanying this EULA, which include(s) computer software and may
|
||||
include "online" or electronic documentation, associated media, and
|
||||
printed materials ("Licensed Product").
|
||||
|
||||
The Licensed Product is protected by copyright laws and international
|
||||
copyright treaties, as well as other intellectual property laws and
|
||||
treaties. The Licensed Product is licensed, not sold.
|
||||
|
||||
By installing, copying, or otherwise using the Licensed Product, you
|
||||
agree to be bound by the terms of this EULA. If you do not agree to
|
||||
the terms of this EULA, do not install, copy, or otherwise use the
|
||||
Licensed Product; you may, however, return it to your place of
|
||||
purchase for a full refund. In addition, by installing, copying, or
|
||||
otherwise using any updates or other components of the Licensed
|
||||
Product that you receive separately as part of the Licensed Product
|
||||
("Updates"), you agree to be bound by any additional license terms
|
||||
that accompany such Updates. If you do not agree to the additional
|
||||
license terms that accompany such Updates, you may not install, copy,
|
||||
or otherwise use such Updates.
|
||||
|
||||
Upon your acceptance of the terms and conditions of this EULA, KDAB
|
||||
grants you the right to use the Licensed Product in the manner
|
||||
provided below.
|
||||
|
||||
KDAB grants to you as an individual a personal, nonexclusive,
|
||||
nontransferable license to make and use copies of the Licensed Product
|
||||
for the sole purposes of designing, developing, and testing your
|
||||
software product(s) ("Applications"). You may install copies of the
|
||||
Licensed Product on an unlimited number of computers provided that you
|
||||
are the only individual using the Licensed Product. If you are an
|
||||
entity, KDAB grants you the right to designate one, and only one,
|
||||
individual within your organization who shall have the sole right to
|
||||
use the Licensed Product in the manner provided above. You may at any
|
||||
time, but not more frequently that once every six (6) months,
|
||||
designate another individual to replace the current designated user by
|
||||
notifying KDAB, so long as there is no more than one designated user
|
||||
at any given time.
|
||||
|
||||
|
||||
GENERAL TERMS THAT APPLY TO APPLICATIONS AND REDISTRIBUTABLES
|
||||
KDAB grants you a nonexclusive, royalty-free right to reproduce and
|
||||
distribute the object code form of any portion of the Licensed Product
|
||||
("Redistributables") for execution on any operating system of a type
|
||||
listed in the License Certificate ("Platforms"). Copies of
|
||||
Redistributables may only be distributed with and for the sole purpose
|
||||
of executing Applications permitted under this License Agreement that
|
||||
you have created using the Licensed Product. Under no circumstances
|
||||
may any copies of Redistributables be distributed separately.
|
||||
|
||||
The license granted in this EULA for you to create your own
|
||||
Applications and distribute them and the Redistributables (if any) to
|
||||
your customers is subject to all of the following conditions: (i) all
|
||||
copies of the Applications you create must bear a valid copyright
|
||||
notice, either your own or the copyright notice that appears on the
|
||||
Licensed Product; (ii) you may not remove or alter any copyright,
|
||||
trademark or other proprietary rights notice contained in any portion
|
||||
of the Licensed Product; (iii) Redistributables, if any, shall be
|
||||
licensed to your customer "as is" (KDAB MAKES NO WARRANTIES OR
|
||||
REPRESENTATIONS VIS-A-VIS YOUR CUSTOMER WITH RESPECT TO
|
||||
REDISTRIBUTABLES, AND KDAB EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES
|
||||
VIS-A-VIS YOUR CUSTOMER, WHETHER EXPRESS OR IMPLIED, ORAL OR WRITTEN,
|
||||
INCLUDING, BUT NOT LIMITED TO ANY IMPLIED WARRANTY OF MERCHANTABILITY
|
||||
OR FITNESS FOR ANY PARTICULAR PURPOSE, WHETHER OR NOT KDAB KNOWS, HAS
|
||||
REASON TO KNOW, HAS BEEN ADVISED OR IS OTHERWISE AWARE OF SUCH
|
||||
PURPOSE); (iv) you will indemnify and hold KDAB, its related companies
|
||||
and its suppliers, harmless from and against any claims or liabilities
|
||||
arising out of the use, reproduction or distribution of your
|
||||
Applications; (v) your Applications must be written using a licensed,
|
||||
registered copy of the Licensed Product; (vi) your Applications must
|
||||
add primary and substantial functionality to the Licensed Product;
|
||||
(vii) your Applications may not pass on functionality which in any way
|
||||
makes it possible for others to create Applications with the Software;
|
||||
(viii) your Applications may not compete with the Licensed Product;
|
||||
(ix)) you may not use KDAB's or any of its suppliers' names, logos, or
|
||||
trademarks to market your programs, except to state that your program
|
||||
was written using the Licensed Product.
|
||||
|
||||
LICENSEE'S BREACH OF CONTRACT
|
||||
In addition to penalties, other sanctions and the like as stated in
|
||||
the Swedish Copyright Act (1960:729), or successive legislation as it
|
||||
may appear, the Licensee agrees to pay a Contractual Fine in case of
|
||||
his/her/their breach of any of the above mentioned obligations,
|
||||
including but not limited to, the Licensee's obligation to let only
|
||||
one person per license use the Software as stated under above. The
|
||||
Contractual Fine is EUR 5000 and is payable by the Licensee to the
|
||||
Licenser immediately upon the Licenser having reasonably demonstrated
|
||||
that the Licensee is in breach of his obligations in this Agreement.
|
||||
|
||||
WARRANTY DISCLAIMER
|
||||
THE LICENSED PRODUCT IS LICENSED TO YOU "AS IS". TO THE MAXIMUM
|
||||
EXTENT PERMITTED BY APPLICABLE LAW, KDAB ON BEHALF OF ITSELF AND ITS
|
||||
SUPPLIERS, DISCLAIMS ALL WARRANTIES AND CONDITIONS, EITHER EXPRESS OR
|
||||
IMPLIED, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
|
||||
NON-INFRINGEMENT WITH REGARD TO THE LICENSED PRODUCT. THIS WARRANTY
|
||||
DISCLAIMER NOTWITHSTANDING, YOU MAY HAVE SPECIFIC LEGAL RIGHTS WHICH
|
||||
MAY VARY FROM STATE/JURISDICTION TO STATE/JURISDICTION.
|
||||
|
||||
|
||||
LIMITATION OF LIABILITY
|
||||
IF, KDAB'S WARRANTY DISCLAIMER NOTWITHSTANDING, KDAB IS HELD LIABLE TO
|
||||
YOU, WHETHER IN CONTRACT, TORT OR ANY OTHER LEGAL THEORY, BASED ON THE
|
||||
LICENSED PRODUCT, KDAB'S ENTIRE LIABILITY TO YOU AND YOUR EXCLUSIVE
|
||||
REMEDY SHALL BE, AT KDAB'S OPTION, EITHER (A) RETURN OF THE PRICE YOU
|
||||
PAID FOR THE LICENSED PRODUCT, OR (B) REPAIR OR REPLACEMENT OF THE
|
||||
LICENSED PRODUCT, PROVIDED YOU RETURN TO KDAB ALL COPIES OF THE
|
||||
LICENSED PRODUCT AS ORIGINALLY DELIVERED TO YOU. KDAB SHALL NOT UNDER
|
||||
ANY CIRCUMSTANCES BE LIABLE TO YOU BASED ON FAILURE OF THE LICENSED
|
||||
PRODUCT IF THE FAILURE RESULTED FROM ACCIDENT, ABUSE OR
|
||||
MISAPPLICATION, NOR SHALL KDAB UNDER ANY CIRCUMSTANCES BE LIABLE FOR
|
||||
SPECIAL DAMAGES, PUNITIVE OR EXEMPLARY DAMAGES, DAMAGES FOR LOSS OF
|
||||
PROFITS OR INTERRUPTION OF BUSINESS OR FOR LOSS OR CORRUPTION OF DATA.
|
||||
ANY AWARD OF DAMAGES FROM KDAB TO YOU SHALL NOT EXCEED THE TOTAL AMOUNT
|
||||
YOU HAVE PAID TO KDAB IN CONNECTION WITH THIS EULA.
|
||||
|
||||
|
||||
SUPPORT AND UPDATES
|
||||
You will receive email based, software developer support and access to
|
||||
Updates to the Licensed Product for one year from the date of initial
|
||||
delivery, in accordance with KDAB support policies and procedures.
|
||||
Such policies and procedures may be changed from time to time.
|
||||
|
||||
|
||||
GENERAL PROVISIONS
|
||||
This EULA may only be modified in writing signed by you and an
|
||||
authorized officer of KDAB. All terms of any purchase order or other
|
||||
ordering document shall be superseded by this EULA. If any provision
|
||||
of the EULA is found void or unenforceable, the remainder will remain
|
||||
valid and enforceable according to its terms. If any remedy provided
|
||||
is determined to have failed for its essential purpose, all
|
||||
limitations of liability and exclusions of damages set forth in this
|
||||
EULA shall remain in effect.
|
||||
|
||||
This EULA shall be construed, interpreted and governed by the laws of
|
||||
Sweden, the venue to be Sunne Tingsratt. The EULA gives you specific
|
||||
legal rights; you may have others, which vary from state to state and
|
||||
from country to country. KDAB reserves all rights not specifically
|
||||
granted in this EULA.
|
||||
@@ -1,12 +0,0 @@
|
||||
Permission to use, copy, modify, and distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
From f583921012ed1f4e853f41d4fd3d95d1a819ac03 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Sat, 4 Aug 2018 02:48:14 +0200
|
||||
Subject: [PATCH] Make sure to find python3 sip code generator
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Upstream-Status: Inappropriate [configuration]
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
---
|
||||
configure.py | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/configure.py b/configure.py
|
||||
index a263efb..daefc0e 100644
|
||||
--- a/configure.py
|
||||
+++ b/configure.py
|
||||
@@ -522,7 +522,7 @@ class TargetConfiguration:
|
||||
self.qtconf_prefix = ''
|
||||
self.qt_shared = False
|
||||
self.qt_version = 0
|
||||
- self.sip = self._find_exe('sip5', 'sip')
|
||||
+ self.sip = self._find_exe('sip3')
|
||||
self.sip_h_version = None
|
||||
self.sip_inc_dir = self.py_venv_inc_dir
|
||||
self.static = False
|
||||
--
|
||||
2.14.4
|
||||
|
||||
76
recipes-bindings/python3-pyqt5_5.9.2.bb
Normal file
76
recipes-bindings/python3-pyqt5_5.9.2.bb
Normal file
@@ -0,0 +1,76 @@
|
||||
SUMMARY = "Python Qt5 Bindings"
|
||||
AUTHOR = "Phil Thomson @ riverbank.co.uk"
|
||||
HOMEPAGE = "http://riverbankcomputing.co.uk"
|
||||
SECTION = "devel/python"
|
||||
LICENSE = "GPLv3"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE;md5=d32239bcb673463ab874e80d47fae504"
|
||||
|
||||
SRC_URI = "\
|
||||
https://sourceforge.net/projects/pyqt/files/PyQt5/PyQt-${PV}/PyQt5_gpl-${PV}.tar.gz \
|
||||
file://0001-Make-sure-to-find-python3-sip-code-generator.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "33d6d2ab8183da17ac18b8132a4b278e"
|
||||
SRC_URI[sha256sum] = "c190dac598c97b0113ca5e7a37c71c623f02d1d713088addfacac4acfa4b8394"
|
||||
|
||||
PE = "1"
|
||||
|
||||
inherit qmake5 python3native
|
||||
|
||||
DEPENDS += "sip3-native sip3 qtbase python3"
|
||||
DEPENDS_append_class-target = "qtsvg"
|
||||
|
||||
S = "${WORKDIR}/PyQt5_gpl-${PV}"
|
||||
B = "${S}"
|
||||
|
||||
DISABLED_FEATURES = "PyQt_Desktop_OpenGL"
|
||||
|
||||
DISABLED_FEATURES_append_arm = " PyQt_qreal_double"
|
||||
|
||||
PYQT_MODULES = "QtCore QtGui QtNetwork QtWidgets QtSvg"
|
||||
PYQT_MODULES_class-native = "QtCore"
|
||||
PYQT_MODULES_aarch64 = "QtCore QtGui QtNetwork QtWidgets QtSvg"
|
||||
|
||||
# full paths
|
||||
SYSROOTDIR = "${STAGING_DIR_HOST}"
|
||||
SYSROOTDIR_class-native = "${STAGING_DIR_NATIVE}"
|
||||
INCLUDEDIR = "${STAGING_INCDIR}"
|
||||
INCLUDEDIR_class-native = "${STAGING_INCDIR_NATIVE}"
|
||||
LIBDIR = "${STAGING_LIBDIR}"
|
||||
LIBDIR_class-native = "${STAGING_LIBDIR_NATIVE}"
|
||||
PYTHONEXEC="${bindir}/${PYTHON_PN}"
|
||||
PYTHONEXEC_class-native="${PYTHON}"
|
||||
|
||||
do_configure() {
|
||||
echo "py_platform = linux" > pyqt.cfg
|
||||
echo "py_inc_dir = ${INCLUDEDIR}/python${PYTHON_BASEVERSION}${PYTHON_ABI}" >> pyqt.cfg
|
||||
echo "py_pylib_dir = ${LIBDIR}/python${PYTHON_BASEVERSION}" >> pyqt.cfg
|
||||
echo "py_pylib_lib = python${PYTHON_BASEVERSION}${PYTHON_ABI}" >> pyqt.cfg
|
||||
echo "pyqt_module_dir = ${D}/${PYTHON_SITEPACKAGES_DIR}" >> pyqt.cfg
|
||||
echo "pyqt_bin_dir = ${D}/${bindir}" >> pyqt.cfg
|
||||
echo "pyqt_sip_dir = ${D}/${datadir}/sip/PyQt5" >> pyqt.cfg
|
||||
echo "pyuic_interpreter = ${PYTHONEXEC}" >> pyqt.cfg
|
||||
echo "pyqt_disabled_features = ${DISABLED_FEATURES}" >> pyqt.cfg
|
||||
echo "qt_shared = True" >> pyqt.cfg
|
||||
QT_VERSION=`${OE_QMAKE_QMAKE} -query QT_VERSION`
|
||||
echo "[Qt $QT_VERSION]" >> pyqt.cfg
|
||||
echo "pyqt_modules = ${PYQT_MODULES}" >> pyqt.cfg
|
||||
echo yes | python3 configure.py --verbose --qmake ${OE_QMAKE_QMAKE} --configuration pyqt.cfg --sysroot ${SYSROOTDIR}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
oe_runmake install
|
||||
}
|
||||
|
||||
do_install_class-native() {
|
||||
oe_runmake install
|
||||
}
|
||||
|
||||
RDEPENDS_${PN}_append_class-target = " python3-core python3-sip"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${libdir}/${PYTHON_DIR}/site-packages \
|
||||
${datadir}/sip/PyQt5 \
|
||||
"
|
||||
|
||||
BBCLASSEXTEND += "native nativesdk"
|
||||
|
||||
44
recipes-bindings/sip3_4.19.8.bb
Normal file
44
recipes-bindings/sip3_4.19.8.bb
Normal file
@@ -0,0 +1,44 @@
|
||||
SUMMARY = "SIP is a C++/Python Wrapper Generator"
|
||||
HOMEPAGE = "http://www.riverbankcomputing.co.uk/sip"
|
||||
SECTION = "devel"
|
||||
LICENSE = "GPLv2+"
|
||||
LIC_FILES_CHKSUM = "file://LICENSE-GPL2;md5=e91355d8a6f8bd8f7c699d62863c7303"
|
||||
|
||||
inherit python3-dir
|
||||
|
||||
DEPENDS = "python3"
|
||||
|
||||
SRC_URI = "${SOURCEFORGE_MIRROR}/project/pyqt/sip/sip-${PV}/sip-${PV}.tar.gz"
|
||||
SRC_URI[md5sum] = "0625fb20347d4ff1b5da551539be0727"
|
||||
SRC_URI[sha256sum] = "7eaf7a2ea7d4d38a56dd6d2506574464bddf7cf284c960801679942377c297bc"
|
||||
BPN = "sip"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
PACKAGES += "python3-sip"
|
||||
|
||||
do_configure_prepend_class-target() {
|
||||
echo "py_platform = linux" > sip.cfg
|
||||
echo "py_inc_dir = %(sysroot)/${includedir}/python${PYTHON_BASEVERSION}${PYTHON_ABI}" >> sip.cfg
|
||||
echo "sip_bin_dir = ${D}/${bindir}" >> sip.cfg
|
||||
echo "sip_inc_dir = ${D}/${includedir}" >> sip.cfg
|
||||
echo "sip_module_dir = ${D}/${libdir}/python${PYTHON_BASEVERSION}/site-packages" >> sip.cfg
|
||||
echo "sip_sip_dir = ${D}/${datadir}/sip" >> sip.cfg
|
||||
python3 configure.py --configuration sip.cfg --sysroot ${STAGING_DIR_HOST} CC="${CC}" CXX="${CXX}" LINK="${CXX}" STRIP="" LINK_SHLIB="${CXX}" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" LFLAGS="${LDFLAGS}"
|
||||
}
|
||||
do_configure_prepend_class-native() {
|
||||
echo "py_platform = linux" > sip.cfg
|
||||
echo "py_inc_dir = ${includedir}/python${PYTHON_BASEVERSION}${PYTHON_ABI}" >> sip.cfg
|
||||
echo "sip_bin_dir = ${D}/${bindir}" >> sip.cfg
|
||||
echo "sip_inc_dir = ${D}/${includedir}" >> sip.cfg
|
||||
echo "sip_module_dir = ${D}/${libdir}/python${PYTHON_BASEVERSION}/site-packages" >> sip.cfg
|
||||
echo "sip_sip_dir = ${D}/${datadir}/sip" >> sip.cfg
|
||||
python3 configure.py --configuration sip.cfg --sysroot ${STAGING_DIR_NATIVE}
|
||||
}
|
||||
do_install() {
|
||||
oe_runmake install
|
||||
# avoid conflicts with sip for python2
|
||||
mv ${D}/${bindir}/sip ${D}/${bindir}/sip3
|
||||
}
|
||||
|
||||
FILES_python3-sip = "${libdir}/${PYTHON_DIR}/site-packages/"
|
||||
@@ -1,24 +0,0 @@
|
||||
SUMMARY = "Connectagram is a word unscrambling game"
|
||||
HOMEPAGE = "https://gottcode.org/connectagram/"
|
||||
LICENSE = "GPLv3"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
||||
|
||||
inherit qmake5 qt5-translation gtk-icon-cache
|
||||
|
||||
DEPENDS = "qttools-native qtbase hicolor-icon-theme"
|
||||
|
||||
SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2"
|
||||
SRC_URI[md5sum] = "db3ad80358b31df292d69b067c5657c6"
|
||||
SRC_URI[sha256sum] = "04dbe12f52e68a0fececad1bbab08e279d7fd2f438e126bfc6d047daf1a55b75"
|
||||
PV = "1.2.10"
|
||||
|
||||
EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/metainfo \
|
||||
"
|
||||
|
||||
# WIP: qt5-translation expects *.qm to work properly so pack word data in PN for now
|
||||
FILES_${PN} += " \
|
||||
${datadir}/connectagram/data \
|
||||
"
|
||||
@@ -14,9 +14,8 @@ DEPENDS = " \
|
||||
"
|
||||
|
||||
SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2"
|
||||
SRC_URI[md5sum] = "a9a33873fc7c0f919fe575b78278fdbf"
|
||||
SRC_URI[sha256sum] = "5886054427da20ef0542dc97c8d2b4308b0a169b49f0409633dd8b17fe71bc94"
|
||||
PV = "1.7.3"
|
||||
SRC_URI[md5sum] = "b3bcf028c519b6a6daabfc71055d4ca8"
|
||||
SRC_URI[sha256sum] = "0190fff4930213b2e32d5d76750af784f45f89046d239da466dc5c9f625ec05b"
|
||||
|
||||
EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}"
|
||||
|
||||
@@ -24,6 +23,7 @@ FILES_${PN} += " \
|
||||
${datadir}/metainfo \
|
||||
${datadir}/${BPN}/icons \
|
||||
${datadir}/${BPN}/symbols1000.dat \
|
||||
${datadir}/${BPN}/icons \
|
||||
${datadir}/${BPN}/themes \
|
||||
${datadir}/${BPN}/sounds \
|
||||
"
|
||||
@@ -8,9 +8,8 @@ inherit qmake5 qt5-translation gtk-icon-cache
|
||||
DEPENDS = "qttools-native qtbase hicolor-icon-theme"
|
||||
|
||||
SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2"
|
||||
SRC_URI[md5sum] = "85272ffa824695e76e726dcce798dbe3"
|
||||
SRC_URI[sha256sum] = "440e9570e2909e3029cced304774a15d83b4019925ac9a4cfb44c1f8a77592d8"
|
||||
PV = "1.1.8"
|
||||
SRC_URI[md5sum] = "f5a0a46d4d1c40c98f20be531aacf488"
|
||||
SRC_URI[sha256sum] = "7cc6c49cb191a264dccf18659b885ead921f01ad496dac9774c7ec49428c8a7d"
|
||||
|
||||
EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}"
|
||||
|
||||
@@ -8,9 +8,8 @@ inherit qmake5 qt5-translation gtk-icon-cache
|
||||
DEPENDS = "qttools-native qtbase hicolor-icon-theme"
|
||||
|
||||
SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2"
|
||||
SRC_URI[md5sum] = "465bdcaa8793dd74e1f1a13dddb78631"
|
||||
SRC_URI[sha256sum] = "422f5fed8adc7e2bc43e22a5c0573385143f8b15e8b3495b7b766e0409fa9782"
|
||||
PV = "1.1.5"
|
||||
SRC_URI[md5sum] = "0b8d536e87c634471543cfae97b7b1c0"
|
||||
SRC_URI[sha256sum] = "9dfdaaf802f792dbd539b7e87674f942a773970aa50c298cd395b5d21a9acca3"
|
||||
|
||||
EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}"
|
||||
|
||||
@@ -1,19 +0,0 @@
|
||||
SUMMARY = "Kapow is a punch clock program to easily keep track of your hours"
|
||||
HOMEPAGE = "https://gottcode.org/kapow/"
|
||||
LICENSE = "GPLv3"
|
||||
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
|
||||
|
||||
inherit qmake5 qt5-translation gtk-icon-cache
|
||||
|
||||
DEPENDS = "qttools-native qtbase hicolor-icon-theme"
|
||||
|
||||
SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2"
|
||||
SRC_URI[md5sum] = "4f0fee606eff49d5a5cf9cdc9baae622"
|
||||
SRC_URI[sha256sum] = "f18ccc4e42d6ddb763983d0bfdc1da4ff91faa83289796e1b238f5fa5404e51e"
|
||||
PV = "1.5.9"
|
||||
|
||||
EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/metainfo \
|
||||
"
|
||||
@@ -5,11 +5,9 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
|
||||
inherit packagegroup
|
||||
|
||||
RDEPENDS_${PN} = " \
|
||||
connectagram \
|
||||
focuswriter \
|
||||
gottet \
|
||||
hexalate \
|
||||
kapow \
|
||||
peg-e \
|
||||
simsu \
|
||||
tetzle \
|
||||
|
||||
@@ -8,9 +8,8 @@ inherit qmake5 qt5-translation gtk-icon-cache
|
||||
DEPENDS = "qttools-native qtbase hicolor-icon-theme"
|
||||
|
||||
SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2"
|
||||
SRC_URI[md5sum] = "9730d413dc6df67de93cd6f506680db6"
|
||||
SRC_URI[sha256sum] = "07025165f903a2e0e57c5ff537a7abb6e849a8d0f0c531b48db4a452edf6a0fc"
|
||||
PV = "1.2.7"
|
||||
SRC_URI[md5sum] = "001a9d449c47e7dca9c9c93defbaa946"
|
||||
SRC_URI[sha256sum] = "b7a644397a6e8fd24c5df72a8c5950af8de035c9fafc712fea5eae87eea15d81"
|
||||
|
||||
EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}"
|
||||
|
||||
@@ -8,9 +8,8 @@ inherit qmake5 qt5-translation gtk-icon-cache
|
||||
DEPENDS = "qttools-native qtbase hicolor-icon-theme"
|
||||
|
||||
SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2"
|
||||
SRC_URI[md5sum] = "d3e8887703dddc59999021bb364da860"
|
||||
SRC_URI[sha256sum] = "79b35bef30b6629574cb563d60291b4dc2cd41f52dc48acde53dcb874656b6a6"
|
||||
PV = "1.3.8"
|
||||
SRC_URI[md5sum] = "f7567be498c365b6a2e301346d08659a"
|
||||
SRC_URI[sha256sum] = "a3c56b6339fd314b198b7ec89d27f1919d4b480e7e0eae03980dda5fec31cd6a"
|
||||
|
||||
EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}"
|
||||
|
||||
@@ -8,9 +8,8 @@ inherit qmake5 qt5-translation gtk-icon-cache
|
||||
DEPENDS = "qttools-native qtbase hicolor-icon-theme"
|
||||
|
||||
SRC_URI = "http://gottcode.org/${BPN}/${BPN}-${PV}-src.tar.bz2"
|
||||
SRC_URI[md5sum] = "85685c336812e6e46133ab5e82be4a4d"
|
||||
SRC_URI[sha256sum] = "982bac58aa37be4ac27a723b84d122af62b8cdce63d9aad180efa48427ce10b0"
|
||||
PV = "2.1.5"
|
||||
SRC_URI[md5sum] = "df7a1a9174a3802b8738ddb3f423d0da"
|
||||
SRC_URI[sha256sum] = "ef67083018dc5e22a61d52e3041d6d725753e6ed5bc70b770159d867451c8cb1"
|
||||
|
||||
EXTRA_QMAKEVARS_PRE += "PREFIX=${prefix}"
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
SUMMARY = "The Linux perf GUI for performance analysis"
|
||||
LICENSE = "GPLv2+ | KDAB-Commercial | KDAB-Commercial-US"
|
||||
LICENSE = "GPLv2+ | KDAB-Commercial"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://LICENSE.txt;md5=50a9af6464b390664488e7af1cc5c148 \
|
||||
file://LICENSE.GPL.txt;md5=8b7a65584aeb92995bcb6066ed0f58f7 \
|
||||
file://LICENSE.txt;md5=a6b8a64054f1549420f27724acd2337a \
|
||||
file://LICENSE.GPL.txt;md5=eed541e1ee57f0373b3cb5824dfe6b93 \
|
||||
file://LICENSE.US.txt;md5=1cf6e30372544be558f7146a7e229cdd \
|
||||
"
|
||||
|
||||
@@ -22,9 +22,9 @@ DEPENDS += " \
|
||||
solid \
|
||||
"
|
||||
SRC_URI = "gitsm://github.com/KDAB/hotspot.git"
|
||||
SRCREV = "35d1865babf40b9df454810ca8cc09e77b0c349a"
|
||||
SRCREV = "a41a0a5ba1fead202bfdcb2198f192114d030484"
|
||||
S = "${WORKDIR}/git"
|
||||
PV = "1.2.0+git${SRCPV}"
|
||||
PV = "1.1.0+git${SRCPV}"
|
||||
|
||||
FILES_${PN} += "${datadir}/icons"
|
||||
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
SUMMARY = "A Qt tool for creating business and scientific charts"
|
||||
LICENSE = "GPLv2+ | KDAB-Commercial"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://LICENSE.txt;md5=ec5e1ab8584968655cce6fd650160b26 \
|
||||
file://LICENSE.GPL.txt;md5=9bea831e8733013a5761386750f57271 \
|
||||
"
|
||||
|
||||
inherit cmake_qt5_extra
|
||||
|
||||
DEPENDS += " \
|
||||
qtbase \
|
||||
qtsvg \
|
||||
"
|
||||
|
||||
SRC_URI = "git://github.com/KDAB/KDChart.git"
|
||||
SRCREV = "488ae47b2be78b07d196ead7614ab35866c63157"
|
||||
S = "${WORKDIR}/git"
|
||||
PV = "2.6.50+git${SRCPV}"
|
||||
|
||||
FILES_${PN}-dev += "${datadir}/mkspecs"
|
||||
@@ -1,21 +0,0 @@
|
||||
SUMMARY = "Qt library for generating printable and exportable reports"
|
||||
DESCRIPTION = "Qt library for generating printable and exportable reports from code and from XML descriptions"
|
||||
LICENSE = "(GPLv2 & LGPLv2.1 ) | KDAB-Commercial | KDAB-Commercial-US"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://LICENSE.GPL.txt;md5=fa70ea33eec42152e9d40dfb8310b70c \
|
||||
file://LICENSE.LGPL.txt;md5=cce5e510cd6a04c95c4b4910d22559fe \
|
||||
file://LICENSE.US.txt;md5=affebebb336655a41db530c5594f7dff \
|
||||
file://LICENSE.txt;md5=129d14735385614fe7b1d5eee63674a5 \
|
||||
"
|
||||
|
||||
inherit cmake_qt5_extra
|
||||
|
||||
DEPENDS += " \
|
||||
qtbase \
|
||||
kdcharts \
|
||||
"
|
||||
|
||||
SRC_URI = "git://github.com/KDAB/KDReports.git"
|
||||
SRCREV = "2a7defbef34399838739f87f42c7d36c198b1611"
|
||||
S = "${WORKDIR}/git"
|
||||
PV = "1.8.50+git${SRCPV}"
|
||||
@@ -1,9 +1,9 @@
|
||||
SUMMARY = "Add mathematical features to your program"
|
||||
LICENSE = "GPLv2 & LGPLv2 & GFDL-1.2"
|
||||
LICENSE = "GPLv2 & GFDL-1.2"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
||||
file://COPYING.LIB;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
|
||||
file://COPYING.DOC;md5=28d73eafa40ebd0ccdc6b37df8de10a3 \
|
||||
file://COPYING.DOC;md5=ad1419ecc56e060eccf8184a87c4285f \
|
||||
"
|
||||
|
||||
inherit kde-apps
|
||||
@@ -15,8 +15,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "71b431cf4d65c14e413d3e0bf9ee657e"
|
||||
SRC_URI[sha256sum] = "9247172f3ffbc0fd3308b4b40f5d76eaa2a5012dc49525c3087caf5cdfc1513e"
|
||||
SRC_URI[md5sum] = "f8186958405a7ee235ba0bff76c0f126"
|
||||
SRC_URI[sha256sum] = "c241b6a3d849534ccd50601c0aebd5cd785220bb7957ed7f6b1d3db35ba0f925"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/libanalitza \
|
||||
|
||||
@@ -28,11 +28,9 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "7229b67491b61dcec2fc210444099653"
|
||||
SRC_URI[sha256sum] = "bc1fcd84632c628a10e8536d56b65a7acbd4235ed0e034fec864b78bdc36f8f1"
|
||||
SRC_URI += " \
|
||||
file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "72d72ddaa13a10cd8ed6319fe00e51be"
|
||||
SRC_URI[sha256sum] = "ecf781b5d3691bb967c9170938c1133e2972ee97d71aab2de65487a952700722"
|
||||
SRC_URI += "file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/config.kcfg \
|
||||
|
||||
@@ -19,8 +19,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "2efa693e1c94fa03d0d391ffb489636b"
|
||||
SRC_URI[sha256sum] = "edb9284b1a7d73b0c824390aa875593650880eb77c2680a2942c9fd65f436a2d"
|
||||
SRC_URI[md5sum] = "d131f6dec4f4e50d52657087403e4c05"
|
||||
SRC_URI[sha256sum] = "b8475ba1a74f8ebc6a36029b60ac803ab0d2c81c253b8c16bd05b6249454c3e3"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kservices5 \
|
||||
|
||||
@@ -19,8 +19,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "0834d12a9478b0335f1ac17448339084"
|
||||
SRC_URI[sha256sum] = "2f950820ebdb52f1c81476b36b5ea07808fe8da154e7757a85ca8ac2c1b37735"
|
||||
SRC_URI[md5sum] = "340d557424fc1ae1defff10a660f39b2"
|
||||
SRC_URI[sha256sum] = "7fc7ff304cf5b5bf2049fdd53fbb4a819bddefc77fde94702c5118240403d972"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kxmlgui5 \
|
||||
|
||||
@@ -16,7 +16,7 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
SRC_URI = "${KDE_MIRROR}/stable/${BPN}/src/${BPN}-${PV}.tar.xz"
|
||||
SRC_URI[md5sum] = "78f66c9b8f9d1e61d421eea7ce5241c7"
|
||||
SRC_URI[sha256sum] = "8f8983bc8d143832dc14bc2003ba6af1af27688e477c0c791fd61445464f2069"
|
||||
SRC_URI[md5sum] = "25651209050396a76d660856f109cf04"
|
||||
SRC_URI[sha256sum] = "175645a149ae4d758ff2746900f6eabe4734b2bdac4d8c95893c650be4f929f2"
|
||||
|
||||
FILES_${PN} += "${OE_QMAKE_PATH_PLUGINS}"
|
||||
@@ -1,30 +0,0 @@
|
||||
From b4e62f10ad907cc3db7adac75e0171e88bb9172d Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Sun, 18 Aug 2019 15:10:02 +0200
|
||||
Subject: [PATCH] Fix build with Qt 5.13
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
---
|
||||
src/plugins/forms/widgets/kexidbdatepicker.cpp | 1 +
|
||||
1 file changed, 1 insertion(+)
|
||||
|
||||
diff --git a/src/plugins/forms/widgets/kexidbdatepicker.cpp b/src/plugins/forms/widgets/kexidbdatepicker.cpp
|
||||
index 1e0692d..c719964 100644
|
||||
--- a/src/plugins/forms/widgets/kexidbdatepicker.cpp
|
||||
+++ b/src/plugins/forms/widgets/kexidbdatepicker.cpp
|
||||
@@ -24,6 +24,7 @@
|
||||
|
||||
#include <QLineEdit>
|
||||
#include <QInputMethodEvent>
|
||||
+#include <QDate>
|
||||
|
||||
KexiDBDatePicker::KexiDBDatePicker(QWidget *parent)
|
||||
: KDatePicker(parent)
|
||||
--
|
||||
2.21.0
|
||||
|
||||
@@ -40,10 +40,9 @@ SRC_URI = " \
|
||||
${KDE_MIRROR}/stable/${BPN}/src/${BPN}-${PV}.tar.xz \
|
||||
file://0001-remove-try_run-by-try_compile-in-breeze-icon-check.patch \
|
||||
file://0002-Add-missing-include-to-fix-build-with-Qt-5.11.patch \
|
||||
file://0003-Fix-build-with-Qt-5.13.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "90ac376276be2f5a8f6eca537ca5fd0c"
|
||||
SRC_URI[sha256sum] = "7a813f9ea815a09c1e733d0e7dc879c64eee85f075389e87e6aab99cf0c1c1ff"
|
||||
SRC_URI[md5sum] = "22d6c4739109441f5274da584f67f1c8"
|
||||
SRC_URI[sha256sum] = "6d55cd4af177bcb060673a0977d52bc91cc2dd1b1420d008a78f9783312152fb"
|
||||
|
||||
do_install_append() {
|
||||
install -d "${D}/${datadir}/pixmaps"
|
||||
@@ -18,10 +18,12 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
SRC_URI = "${KDE_MIRROR}/stable/${BPN}/src/${BPN}-${PV}.tar.xz"
|
||||
SRC_URI[md5sum] = "4964e28440f3a808297efb0cb786bd14"
|
||||
SRC_URI[sha256sum] = "67af0c2d74715957bd5373a6a30589ff0a996cb1d267dfd0538dccaa9a768dfa"
|
||||
SRC_URI[md5sum] = "ee888d41a677ddc6b8c63f0f71e82026"
|
||||
SRC_URI[sha256sum] = "7ede8ee868ba480e4666a32b4b26d279b1e45177f83b0ada32a15fa9cee514a3"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kproperty3 \
|
||||
${datadir}/kpropertywidgets3 \
|
||||
${datadir}/kservicetypes5 \
|
||||
${datadir}/kreport3 \
|
||||
${OE_QMAKE_PATH_PLUGINS} \
|
||||
"
|
||||
@@ -24,8 +24,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
SRC_URI = "${KDE_MIRROR}/stable/${BPN}/src/${BPN}-${PV}.tar.xz"
|
||||
SRC_URI[md5sum] = "f11fa519d7f5519c8e48906fa96cab2f"
|
||||
SRC_URI[sha256sum] = "22716d719654e8f887fe4d33654e252ddf3d3d818c44e15a8af0e6f2e7d6ccd7"
|
||||
SRC_URI[md5sum] = "48216d8f83a48c93bed9acd0081daa92"
|
||||
SRC_URI[sha256sum] = "3b6485629b5e4343b7ddf42efb1927310d60b143a22afe79925147d0ddcdf36c"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kservicetypes5 \
|
||||
@@ -8,6 +8,7 @@ DEPENDS += "\
|
||||
kauth-native \
|
||||
kconfig-native \
|
||||
kcoreaddons-native \
|
||||
kdesignerplugin-native \
|
||||
kdelibs4support-native \
|
||||
kdelibs4support \
|
||||
sonnet-native \
|
||||
@@ -18,8 +19,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "3fc039691fae9e401d6e66d1c78b831f"
|
||||
SRC_URI[sha256sum] = "82860ef615954e94f3f382ad60fb144fcfcf7777b8a890f281c0cce55da13a55"
|
||||
SRC_URI[md5sum] = "f4be0f56a4935ef177375ab7f22ce25b"
|
||||
SRC_URI[sha256sum] = "1bff5f828f11e9b9a527b59f12ec16745fa19fb09392ca1872d6b0c909212427"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/config.kcfg \
|
||||
|
||||
@@ -36,21 +36,18 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "41fa8934aa3f10bb422d79d952db0e6e"
|
||||
SRC_URI[sha256sum] = "de71f52324c15d692448ac4c79c1e0fcf35df5c03349a8bcbebfae20d9f69d4e"
|
||||
SRC_URI[md5sum] = "08f6009c452da25828e26608b1191d19"
|
||||
SRC_URI[sha256sum] = "c4921759bdfec9a96201a5d76a67869f867ec7e3caf92f8e46fa5d853a0741b1"
|
||||
SRC_URI += " \
|
||||
file://0001-fix-build-for-qtbase-without-session-management.patch \
|
||||
file://0002-Revert-Make-target_link_libraries-for-kdeinit_dolphi.patch \
|
||||
"
|
||||
|
||||
EXTRA_OECMAKE += "-DBUILD_TESTING=OFF"
|
||||
|
||||
FILES_SOLIBSDEV = "${libdir}/libdolphin*${SOLIBSDEV}"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/config.kcfg \
|
||||
${datadir}/k*5 \
|
||||
${datadir}/kglobalaccel \
|
||||
${datadir}/dbus-1 \
|
||||
${libdir}/libkdeinit5_dolphin.so \
|
||||
${OE_QMAKE_PATH_PLUGINS} \
|
||||
|
||||
@@ -16,7 +16,7 @@ diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
|
||||
index f7a7613..127cd85 100644
|
||||
--- a/src/dolphinmainwindow.cpp
|
||||
+++ b/src/dolphinmainwindow.cpp
|
||||
@@ -434,9 +434,11 @@ void DolphinMainWindow::closeEvent(QCloseEvent* event)
|
||||
@@ -386,9 +386,11 @@ void DolphinMainWindow::closeEvent(QCloseEvent* event)
|
||||
// Find out if Dolphin is closed directly by the user or
|
||||
// by the session manager because the session is closed
|
||||
bool closedByUser = true;
|
||||
@@ -32,7 +32,7 @@ diff --git a/src/main.cpp b/src/main.cpp
|
||||
index b4ca2c6..5c058a9 100644
|
||||
--- a/src/main.cpp
|
||||
+++ b/src/main.cpp
|
||||
@@ -168,6 +168,7 @@ extern "C" Q_DECL_EXPORT int kdemain(int argc, char **argv)
|
||||
@@ -156,6 +156,7 @@ extern "C" Q_DECL_EXPORT int kdemain(int argc, char **argv)
|
||||
|
||||
mainWindow->show();
|
||||
|
||||
@@ -40,11 +40,14 @@ index b4ca2c6..5c058a9 100644
|
||||
if (app.isSessionRestored()) {
|
||||
const QString className = KXmlGuiWindow::classNameOfToplevel(1);
|
||||
if (className == QLatin1String("DolphinMainWindow")) {
|
||||
@@ -176,6 +177,7 @@ extern "C" Q_DECL_EXPORT int kdemain(int argc, char **argv)
|
||||
@@ -164,6 +165,7 @@ extern "C" Q_DECL_EXPORT int kdemain(int argc, char **argv)
|
||||
qCWarning(DolphinDebug) << "Unknown class " << className << " in session saved data!";
|
||||
}
|
||||
}
|
||||
+#endif
|
||||
|
||||
KDBusService dolphinDBusService;
|
||||
DBusInterface interface;
|
||||
return app.exec(); // krazy:exclude=crash;
|
||||
}
|
||||
--
|
||||
2.1.0
|
||||
|
||||
|
||||
@@ -29,8 +29,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "3852d3814d21ed1c8f1e98d188cb82f2"
|
||||
SRC_URI[sha256sum] = "f9172f6ddf75cf8e4be19d50f80994d59545fdea966674fb67abe7a7c934810a"
|
||||
SRC_URI[md5sum] = "fcf5e0ec51b65619fcfe8c7bc59bd162"
|
||||
SRC_URI[sha256sum] = "115d60bfdef498ea75bc077a7091fb738615b399b03ec2a76a4bf34f19b407f3"
|
||||
|
||||
CXXFLAGS += "-isystem ${STAGING_INCDIR}/phonon4qt5/KDE"
|
||||
|
||||
|
||||
@@ -21,8 +21,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "6fa0d265e40841fca313aa631de1931b"
|
||||
SRC_URI[sha256sum] = "95fa38574292a2aa8d3d90749fbbb61c5005889ef1df1aaa04d2d789bbf4fb00"
|
||||
SRC_URI[md5sum] = "af910a156f817368d2bab2520636f320"
|
||||
SRC_URI[sha256sum] = "9090bc7c7ac2586e857cdc246a94621c1453e7f65c6d491f2f374f43d3e4af1a"
|
||||
SRC_URI += " \
|
||||
file://0001-fix-build-for-qtbase-build-without-session-support-Q.patch \
|
||||
"
|
||||
|
||||
@@ -24,8 +24,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "1429dd72178fbefc8b5d704a01047c71"
|
||||
SRC_URI[sha256sum] = "eac24bb0b0bcf7e12e4059187e0fd542503bae620637a4f35a339e6f63ab3890"
|
||||
SRC_URI[md5sum] = "e18910bb5e1605ed4c8eafe07ab2a0ad"
|
||||
SRC_URI[sha256sum] = "ad065e488f9a751423d571f51449e766c625e88ca7d3c30d21ff3b9027fc04af"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/config.kcfg \
|
||||
|
||||
@@ -2,9 +2,6 @@ From e5170c60d0443d8f50b5bf6a85bea64bea29fbc0 Mon Sep 17 00:00:00 2001
|
||||
From: "Luis Gustavo S. Barreto" <gustavo@ossystems.com.br>
|
||||
Date: Wed, 6 Apr 2016 19:42:07 +0000
|
||||
Subject: [PATCH 3/3] Avoid try_run
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
When cross compiling, the executable compiled in the first step usually
|
||||
cannot be run on the build host. For this reason, we use try_compile()
|
||||
@@ -13,19 +10,15 @@ to determine what version of libjpeg is available.
|
||||
Upstream-Status: Pending
|
||||
|
||||
Signed-off-by: Luis Gustavo S. Barreto <gustavo@ossystems.com.br>
|
||||
|
||||
Adjusted to 19.04
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
|
||||
---
|
||||
lib/CMakeLists.txt | 75 ++++++++++++++++++++++++++--------------------
|
||||
1 file changed, 42 insertions(+), 33 deletions(-)
|
||||
lib/CMakeLists.txt | 71 ++++++++++++++++++++++++++++++++----------------------
|
||||
1 file changed, 42 insertions(+), 29 deletions(-)
|
||||
|
||||
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
|
||||
index 2a6a08d..c8696ba 100644
|
||||
index d51b80d..db3ac7b 100644
|
||||
--- a/lib/CMakeLists.txt
|
||||
+++ b/lib/CMakeLists.txt
|
||||
@@ -12,42 +12,51 @@ message(STATUS "Looking for libjpeg version in ${JPEG_INCLUDE_DIR}/jpeglib.h")
|
||||
@@ -10,42 +10,55 @@ message(STATUS "Looking for libjpeg version in ${JPEG_INCLUDE_DIR}/jpeglib.h")
|
||||
# found in (between libjpeg, libjpeg-turbo and various multilib header
|
||||
# forwarding schemes seen in distros), have a simple program print out the
|
||||
# right version.
|
||||
@@ -34,16 +27,6 @@ index 2a6a08d..c8696ba 100644
|
||||
-#include <stdio.h>
|
||||
-#include <stdlib.h>
|
||||
-#include <jpeglib.h>
|
||||
-
|
||||
-int main(void) { printf(\"%d\\\n\", JPEG_LIB_VERSION); return 0; }
|
||||
-")
|
||||
-
|
||||
-try_run(JPEGLIB_RUN_RESULT JPEGLIB_COMPILE_RESULT
|
||||
- ${CMAKE_CURRENT_BINARY_DIR} ${JPEGLIB_VERSION_CHECK_PATH}
|
||||
- CMAKE_FLAGS -DINCLUDE_DIRECTORIES:PATH=${JPEG_INCLUDE_DIR}
|
||||
- RUN_OUTPUT_VARIABLE jpeglib_version)
|
||||
-
|
||||
-if ((${JPEGLIB_COMPILE_RESULT} EQUAL FALSE) OR ("${JPEGLIB_RUN_RESULT}" EQUAL FAILED_TO_RUN) OR "${jpeglib_version}" STREQUAL "")
|
||||
+function(JPEGVersionCheck Ret Op Version)
|
||||
+ set(JPEGLIB_VERSION_CHECK_PATH "${CMAKE_CURRENT_BINARY_DIR}/jpeglib-version-check.c")
|
||||
+ file(WRITE ${JPEGLIB_VERSION_CHECK_PATH} "
|
||||
@@ -58,58 +41,68 @@ index 2a6a08d..c8696ba 100644
|
||||
+ return 0;
|
||||
+ }
|
||||
+ ")
|
||||
+ try_compile(COMPILE_RESULT_VAR
|
||||
|
||||
-int main(void) { printf(\"%d\\\n\", JPEG_LIB_VERSION); }
|
||||
-")
|
||||
+try_compile(COMPILE_RESULT_VAR
|
||||
+ "${CMAKE_BINARY_DIR}" "${JPEGLIB_VERSION_CHECK_PATH}"
|
||||
+ COMPILE_DEFINITIONS "${COMPILE_DEFINITIONS}"
|
||||
+ OUTPUT_VARIABLE COMPILE_OUT)
|
||||
|
||||
-try_run(JPEGLIB_RUN_RESULT JPEGLIB_COMPILE_RESULT
|
||||
- ${CMAKE_CURRENT_BINARY_DIR} ${JPEGLIB_VERSION_CHECK_PATH}
|
||||
- CMAKE_FLAGS -DINCLUDE_DIRECTORIES:PATH=${JPEG_INCLUDE_DIR}
|
||||
- RUN_OUTPUT_VARIABLE jpeglib_version)
|
||||
+ set(${Ret} ${COMPILE_OUT} PARENT_SCOPE)
|
||||
+endfunction()
|
||||
+
|
||||
|
||||
-if ((${JPEGLIB_COMPILE_RESULT} EQUAL FALSE) OR ("${JPEGLIB_RUN_RESULT}" EQUAL FAILED_TO_RUN) OR "${jpeglib_version}" STREQUAL "")
|
||||
- message(FATAL_ERROR "Could not find jpeglib.h. This file comes with libjpeg.")
|
||||
-endif()
|
||||
+find_package(JPEG REQUIRED)
|
||||
+if(JPEG_FOUND)
|
||||
+ JPEGVersionCheck(JPEG_LIB_VERSION < 80)
|
||||
+ if (${JPEG_LIB_VERSION} MATCHES "#error")
|
||||
+ set(GV_JPEG_DIR libjpeg-62)
|
||||
+ endif()
|
||||
+ JPEGVersionCheck(JPEG_LIB_VERSION == 80)
|
||||
+ if (${JPEG_LIB_VERSION} MATCHES "#error")
|
||||
+ set(GV_JPEG_DIR libjpeg-80)
|
||||
+ endif()
|
||||
+ JPEGVersionCheck(JPEG_LIB_VERSION == 90)
|
||||
+ if (${JPEG_LIB_VERSION} MATCHES "#error")
|
||||
+ set(GV_JPEG_DIR libjpeg-90)
|
||||
+ endif()
|
||||
+
|
||||
+ if ("${GV_JPEG_DIR}" STREQUAL "")
|
||||
+ message(FATAL_ERROR "Unknown libjpeg version")
|
||||
+ else()
|
||||
+ message(STATUS "using ${GV_JPEG_DIR}")
|
||||
+ endif()
|
||||
+else(JPEG_FOUND)
|
||||
message(FATAL_ERROR "Could not find jpeglib.h. This file comes with libjpeg.")
|
||||
endif()
|
||||
|
||||
-if ("${jpeglib_version}" LESS 80)
|
||||
- set(GV_JPEG_DIR libjpeg-62)
|
||||
-endif()
|
||||
-
|
||||
+ JPEGVersionCheck(JPEG_LIB_VERSION == 80)
|
||||
+ if (${JPEG_LIB_VERSION} MATCHES "#error")
|
||||
+ set(GV_JPEG_DIR libjpeg-80)
|
||||
+ endif()
|
||||
|
||||
-if ("${jpeglib_version}" EQUAL 80)
|
||||
- set(GV_JPEG_DIR libjpeg-80)
|
||||
-endif()
|
||||
-
|
||||
+ JPEGVersionCheck(JPEG_LIB_VERSION == 90)
|
||||
+ if (${JPEG_LIB_VERSION} MATCHES "#error")
|
||||
+ set(GV_JPEG_DIR libjpeg-90)
|
||||
+ endif()
|
||||
|
||||
-if ("${jpeglib_version}" EQUAL 90)
|
||||
- set(GV_JPEG_DIR libjpeg-90)
|
||||
-endif()
|
||||
-
|
||||
-if ("${GV_JPEG_DIR}" STREQUAL "")
|
||||
- message(FATAL_ERROR "Unknown libjpeg version: ${jpeglib_version}")
|
||||
-endif()
|
||||
+ if ("${GV_JPEG_DIR}" STREQUAL "")
|
||||
+ message(FATAL_ERROR "Unknown libjpeg version")
|
||||
+ else()
|
||||
+ message(STATUS "using ${GV_JPEG_DIR}")
|
||||
+ endif()
|
||||
+else(JPEG_FOUND)
|
||||
+ message(FATAL_ERROR "Could not find jpeglib.h. This file comes with libjpeg.")
|
||||
endif()
|
||||
-
|
||||
-message(STATUS "libjpeg version: ${jpeglib_version}")
|
||||
-
|
||||
+
|
||||
add_definitions(-Dlibjpeg_EXPORTS)
|
||||
include_directories(
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/${GV_JPEG_DIR}
|
||||
--
|
||||
2.20.1
|
||||
2.5.5
|
||||
|
||||
|
||||
@@ -5,18 +5,18 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5a3169a2d39a757efd8b7aa66a69d97b"
|
||||
inherit kde-apps gettext
|
||||
|
||||
DEPENDS += " \
|
||||
kdelibs4support-native \
|
||||
kdoctools-native \
|
||||
jpeg \
|
||||
exiv2 \
|
||||
lcms \
|
||||
phonon \
|
||||
kdelibs4support \
|
||||
kdelibs4support-native \
|
||||
kded \
|
||||
kactivities \
|
||||
kcoreaddons-native \
|
||||
kconfig-native \
|
||||
kauth-native \
|
||||
kdesignerplugin-native \
|
||||
sonnet-native \
|
||||
kxmlgui \
|
||||
kfilemetadata \
|
||||
@@ -25,8 +25,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "925dd075bdec3aaa61dfac125b7dd077"
|
||||
SRC_URI[sha256sum] = "7e7ad69eaa7a6b2d0549e94d1dab0d012107c822d66483d54aa8268900820255"
|
||||
SRC_URI[md5sum] = "93019f12a8b494b22d00d9489832246b"
|
||||
SRC_URI[sha256sum] = "0b4ff869fc09140e258e894f5169fc6c96f1126891b8ed1a391d4624d6ab0c35"
|
||||
|
||||
SRC_URI += " \
|
||||
file://0001-Avoid-try_run.patch \
|
||||
|
||||
@@ -3,7 +3,7 @@ LICENSE = "GPLv2 & LGPLv2 & GFDL-1.2"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
||||
file://COPYING.LIB;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
|
||||
file://COPYING.DOC;md5=28d73eafa40ebd0ccdc6b37df8de10a3 \
|
||||
file://COPYING.DOC;md5=ad1419ecc56e060eccf8184a87c4285f \
|
||||
"
|
||||
|
||||
inherit kde-apps gettext gtk-icon-cache
|
||||
@@ -22,8 +22,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "1fb55c17da09c60fdb36c4b629e95174"
|
||||
SRC_URI[sha256sum] = "7832584a161c2f611ce980ad98932533c998d37e6e4e2b7afbd0b4e98ce88a65"
|
||||
SRC_URI[md5sum] = "6357ca100f9f85ffd9fab69fa4bb9d79"
|
||||
SRC_URI[sha256sum] = "a93b319c6a3fab3d3a12923f8153a6f38281887e176fffaa37ca6cc677a280b5"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/icons \
|
||||
|
||||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = " \
|
||||
file://COPYING.DOC;md5=24ea4c7092233849b4394699333b5c56 \
|
||||
"
|
||||
|
||||
inherit kde-apps gettext pkgconfig gtk-icon-cache
|
||||
inherit kde-apps pythonnative gettext pkgconfig gtk-icon-cache
|
||||
|
||||
DEPENDS += " \
|
||||
qtsvg \
|
||||
@@ -18,6 +18,7 @@ DEPENDS += " \
|
||||
kconfig-native \
|
||||
kdoctools-native \
|
||||
kauth-native \
|
||||
kdesignerplugin-native \
|
||||
karchive \
|
||||
kconfig \
|
||||
kcoreaddons \
|
||||
|
||||
@@ -26,8 +26,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "594487a991b9cc7b36802393ab218856"
|
||||
SRC_URI[sha256sum] = "0edc811df5d4e729851e4af980fb414d70af66218091c017c16054a5181af80e"
|
||||
SRC_URI[md5sum] = "6fbc7241c27a158e3983e2cfb64237f5"
|
||||
SRC_URI[sha256sum] = "ad4a6377d260df76d000631ab4c95e5cb82ce47d031edc9801b6ed92d856305c"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kxmlgui5 \
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
From ac7548b52a701ad846dd0cb534440f8de7864711 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
|
||||
Date: Tue, 10 Feb 2015 11:43:46 +0100
|
||||
Subject: [PATCH 1/2] fix build for qtbase build without session support
|
||||
QT_NO_SESSIONMANAGER
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
|
||||
---
|
||||
kate/kateapp.cpp | 5 ++++-
|
||||
kate/katemainwindow.cpp | 2 ++
|
||||
kwrite/main.cpp | 5 ++++-
|
||||
3 files changed, 10 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/kate/src/kateapp.cpp b/kate/src/kateapp.cpp
|
||||
index 4c26f33..03fd159 100644
|
||||
--- a/kate/kateapp.cpp
|
||||
+++ b/kate/kateapp.cpp
|
||||
@@ -99,10 +99,13 @@ bool KateApp::init()
|
||||
// set KATE_PID for use in child processes
|
||||
qputenv("KATE_PID", QString::fromLatin1("%1").arg(QCoreApplication::applicationPid()).toLatin1().constData());
|
||||
|
||||
+#ifndef QT_NO_SESSIONMANAGER
|
||||
// handle restore different
|
||||
if (qApp->isSessionRestored()) {
|
||||
restoreKate();
|
||||
- } else {
|
||||
+ } else
|
||||
+#endif
|
||||
+ {
|
||||
// let us handle our command line args and co ;)
|
||||
// we can exit here if session chooser decides
|
||||
if (!startupKate()) {
|
||||
diff --git a/kate/src/katemainwindow.cpp b/kate/src/katemainwindow.cpp
|
||||
index 464e20c..8efc401 100644
|
||||
--- a/kate/katemainwindow.cpp
|
||||
+++ b/kate/katemainwindow.cpp
|
||||
@@ -467,9 +467,11 @@ bool KateMainWindow::queryClose()
|
||||
{
|
||||
// session saving, can we close all views ?
|
||||
// just test, not close them actually
|
||||
+#ifndef QT_NO_SESSIONMANAGER
|
||||
if (qApp->isSavingSession()) {
|
||||
return queryClose_internal();
|
||||
}
|
||||
+#endif
|
||||
|
||||
// normal closing of window
|
||||
// allow to close all windows until the last without restrictions
|
||||
diff --git a/kwrite/main.cpp b/kwrite/main.cpp
|
||||
index a361527..d5738e9 100644
|
||||
--- a/kwrite/main.cpp
|
||||
+++ b/kwrite/main.cpp
|
||||
@@ -159,9 +159,12 @@ extern "C" Q_DECL_EXPORT int kdemain(int argc, char **argv)
|
||||
*/
|
||||
aboutData.processCommandLine(&parser);
|
||||
|
||||
+#ifndef QT_NO_SESSIONMANAGER
|
||||
if (app.isSessionRestored()) {
|
||||
KWrite::restore();
|
||||
- } else {
|
||||
+ } else
|
||||
+#endif
|
||||
+ {
|
||||
bool nav = false;
|
||||
int line = 0, column = 0;
|
||||
|
||||
--
|
||||
1.9.3
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
From d3c4d12f9168d2d1267b9732e75658866ef8bb9b Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@googlemail.com>
|
||||
Date: Tue, 10 Feb 2015 11:52:14 +0100
|
||||
Subject: [PATCH 2/2] fix build for sessionless kconfig
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
|
||||
---
|
||||
kate/kateapp.cpp | 2 ++
|
||||
kwrite/kwrite.cpp | 2 ++
|
||||
2 files changed, 4 insertions(+)
|
||||
|
||||
diff --git a/kate/kateapp.cpp b/kate/kateapp.cpp
|
||||
index 03fd159..ae2c793 100644
|
||||
--- a/kate/kateapp.cpp
|
||||
+++ b/kate/kateapp.cpp
|
||||
@@ -121,6 +121,7 @@ bool KateApp::init()
|
||||
|
||||
void KateApp::restoreKate()
|
||||
{
|
||||
+#ifndef QT_NO_SESSIONMANAGER
|
||||
KConfig *sessionConfig = KConfigGui::sessionConfig();
|
||||
|
||||
// activate again correct session!!!
|
||||
@@ -142,6 +143,7 @@ void KateApp::restoreKate()
|
||||
if (mainWindowsCount() == 0) {
|
||||
newMainWindow();
|
||||
}
|
||||
+#endif
|
||||
}
|
||||
|
||||
bool KateApp::startupKate()
|
||||
diff --git a/kwrite/kwrite.cpp b/kwrite/kwrite.cpp
|
||||
index dc54855..5693db0 100644
|
||||
--- a/kwrite/kwrite.cpp
|
||||
+++ b/kwrite/kwrite.cpp
|
||||
@@ -454,6 +454,7 @@ void KWrite::saveGlobalProperties(KConfig *config) //save documents
|
||||
//restore session
|
||||
void KWrite::restore()
|
||||
{
|
||||
+#ifndef QT_NO_SESSIONMANAGER
|
||||
KConfig *config = KConfigGui::sessionConfig();
|
||||
|
||||
if (!config) {
|
||||
@@ -483,6 +484,7 @@ void KWrite::restore()
|
||||
t = new KWrite(docList.at(cg.readEntry("DocumentNumber", 0) - 1));
|
||||
t->restore(config, z);
|
||||
}
|
||||
+#endif
|
||||
}
|
||||
|
||||
void KWrite::aboutEditor()
|
||||
--
|
||||
1.9.3
|
||||
|
||||
@@ -34,8 +34,13 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "a8a14bf2a8590b1d8f38b565881d71ba"
|
||||
SRC_URI[sha256sum] = "ab9f076e7e825fca64252b366e637e34157f1f875aa573bdae333fc240e0ec71"
|
||||
SRC_URI[md5sum] = "17e8021c1c1bf1d77cd467ca3fab3caf"
|
||||
SRC_URI[sha256sum] = "f7f2cba41a4c88b65885532db6b6161c66055a6697d20ee88adb70f302d387e1"
|
||||
|
||||
SRC_URI += " \
|
||||
file://0001-fix-build-for-qtbase-build-without-session-support-Q.patch \
|
||||
file://0002-fix-build-for-sessionless-kconfig.patch \
|
||||
"
|
||||
|
||||
FILES_SOLIBSDEV = ""
|
||||
|
||||
|
||||
@@ -27,8 +27,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "4c3cd816f6a7553e94ef7c3870b3bede"
|
||||
SRC_URI[sha256sum] = "a02df5d0d03fdd478ead1ba705089514b6debfae553be8d814edfb6952149eac"
|
||||
SRC_URI[md5sum] = "83a27f535669d9a5d4782b9355db757b"
|
||||
SRC_URI[sha256sum] = "0e18087d0de067282023a98b800807632dd6a91bab51cf0d43d53bffba9b33f1"
|
||||
SRC_URI += "file://0001-fix-build-for-qtbase-build-without-session-support-Q.patch"
|
||||
|
||||
FILES_${PN} += " \
|
||||
@@ -36,5 +36,3 @@ FILES_${PN} += " \
|
||||
${datadir}/kconf_update \
|
||||
${datadir}/icons \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} += "perl"
|
||||
|
||||
@@ -22,8 +22,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "579d0fdc50c7da848eda46d6c6bb753b"
|
||||
SRC_URI[sha256sum] = "9d2553472a3f61e1be584bed2d9295a60b8074fdcd264213d67dc20f63033563"
|
||||
SRC_URI[md5sum] = "640b68db31f22b138ef0df5968e648a9"
|
||||
SRC_URI[sha256sum] = "e981107096893a8078ab978c429f367432a74de1bdeffe8fb628ccc397701332"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/config.kcfg \
|
||||
|
||||
@@ -28,8 +28,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "ca06728d8d10b442435b1852769aee24"
|
||||
SRC_URI[sha256sum] = "21e4bc2e2f3c23d4b954c8b336aab9faa5ba6021ca1487baf39595ff31d82e0b"
|
||||
SRC_URI[md5sum] = "f190c2913ba0dbcdf15c6f02be532ce8"
|
||||
SRC_URI[sha256sum] = "c62cb68b4246c1aef73efb04ea883599384afbd977e8da93893346cbd835f343"
|
||||
SRC_URI += "file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch"
|
||||
|
||||
FILES_${PN} += " \
|
||||
|
||||
@@ -23,8 +23,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "7d34763a6f37cc904008d84f3cdb1542"
|
||||
SRC_URI[sha256sum] = "1c49d80dcbaa7745932c6b64c520072099e66767e8d1f725a332f79a7ee89f3f"
|
||||
SRC_URI[md5sum] = "26c31da7a5dae51ef1a362ca3458517f"
|
||||
SRC_URI[sha256sum] = "23e1cc935eab6a2520e683185cb223243c71553b1ef6059a21f09d72e8fe00af"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kxmlgui5 \
|
||||
|
||||
@@ -22,12 +22,9 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "d408ad818809a0211c742c2bb285a668"
|
||||
SRC_URI[sha256sum] = "8fc5e0643bb826b07cb5d283b8bd6fd5da4979f6125b43b1db3a9db60b02a36a"
|
||||
SRC_URI[md5sum] = "3193c9233a545e55528f68b6fb5eb6fb"
|
||||
SRC_URI[sha256sum] = "48011190a0ef28998e6c96b9d644e3d06b68606b7d1467c84a8d176eeebb9adf"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kxmlgui5 \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN} += "graphviz"
|
||||
RDEPENDS_${PN} += "perl"
|
||||
|
||||
@@ -9,7 +9,6 @@ inherit kde-apps gettext
|
||||
|
||||
DEPENDS += "\
|
||||
gmp \
|
||||
mpfr \
|
||||
kauth-native \
|
||||
kconfig-native \
|
||||
kcoreaddons-native \
|
||||
@@ -23,8 +22,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "1c3d23529035c135fe28924c9541e099"
|
||||
SRC_URI[sha256sum] = "7c61d96bcd45621d021ae8a56224dcf81999cb14ab7b1d7976a47eee2be25d2e"
|
||||
SRC_URI[md5sum] = "ddd1ca9dcdb7db22f8a011e525e99963"
|
||||
SRC_URI[sha256sum] = "10b3ebb5efab3731e9f12a8632546685281179881b03aae98f96a2cdbd21f02f"
|
||||
|
||||
FILES_SOLIBSDEV = ""
|
||||
|
||||
|
||||
@@ -1,23 +0,0 @@
|
||||
SUMMARY = "Tool to copy and paste characters from all installed fonts"
|
||||
LICENSE = "GPLv2"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=5c213a7de3f013310bd272cdb6eb7a24 \
|
||||
"
|
||||
|
||||
inherit kde-apps
|
||||
|
||||
DEPENDS += " \
|
||||
kdoctools-native \
|
||||
kconfig-native \
|
||||
kcoreaddons-native \
|
||||
kauth-native \
|
||||
kbookmarks \
|
||||
kcrash \
|
||||
ki18n \
|
||||
kwidgetsaddons \
|
||||
kxmlgui \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "ab2110da74583da086e638da467bc2b2"
|
||||
SRC_URI[sha256sum] = "f294965fc7cf8b1063b611233a98fab13a00263f1d4fd254fb8b53b3f125bc52"
|
||||
@@ -16,8 +16,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "8c14dfc8c4f2895a27b854a71d5bd992"
|
||||
SRC_URI[sha256sum] = "0c3d45ceb9029f0d316e61b3f403838b4c7de82a3211a231b539e6755386c657"
|
||||
SRC_URI[md5sum] = "edc6d65d8ed5c0a7c02e2eda2b78ab4c"
|
||||
SRC_URI[sha256sum] = "8defdb9450922b675dc80561a0f4bb119e621a85dd73661fc4caacef8db91228"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/icons \
|
||||
|
||||
@@ -1,10 +1,7 @@
|
||||
From d7cf023376cb834f9becb63f2648c63c5ec3fd12 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Sat, 17 Aug 2019 23:17:45 +0200
|
||||
Date: Thu, 15 Nov 2018 18:46:38 +0100
|
||||
Subject: [PATCH] CMakeLists.txt: make MLT_PREFIX configurable
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
Upstream-Status: Inappropriate [embedded specific]
|
||||
|
||||
@@ -14,18 +11,18 @@ Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index ee77dae..29c4efd 100644
|
||||
index ec69e0c..0792bc3 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -76,7 +76,7 @@ if(WIN32)
|
||||
find_package(DrMinGW)
|
||||
set(MLT_PREFIX "..")
|
||||
else()
|
||||
@@ -119,7 +119,7 @@ set_package_properties(MLT PROPERTIES
|
||||
PURPOSE "Required to do video processing")
|
||||
|
||||
if(NOT WIN32)
|
||||
- set(MLT_PREFIX ${MLT_ROOT_DIR})
|
||||
+ set(MLT_PREFIX ${MLT_ROOT_DIR} CACHE STRING "mlt prefix")
|
||||
find_package(Qt5 OPTIONAL_COMPONENTS WebKitWidgets QUIET)
|
||||
else()
|
||||
set(MLT_PREFIX "..")
|
||||
endif()
|
||||
|
||||
--
|
||||
2.21.0
|
||||
2.14.5
|
||||
|
||||
|
||||
@@ -7,17 +7,14 @@ LIC_FILES_CHKSUM = " \
|
||||
inherit kde-apps gtk-icon-cache
|
||||
|
||||
DEPENDS += "\
|
||||
shared-mime-info-native \
|
||||
kpackage-native \
|
||||
kcoreaddons-native \
|
||||
kdoctools-native \
|
||||
kauth-native \
|
||||
mlt \
|
||||
qtsvg \
|
||||
qtwebkit \
|
||||
karchive \
|
||||
kauth-native \
|
||||
sonnet-native \
|
||||
kbookmarks \
|
||||
kcoreaddons-native \
|
||||
kconfig-native \
|
||||
kconfigwidgets \
|
||||
kdbusaddons \
|
||||
@@ -32,14 +29,15 @@ DEPENDS += "\
|
||||
kguiaddons \
|
||||
ktextwidgets \
|
||||
kiconthemes \
|
||||
kdoctools-native \
|
||||
xapian-core \
|
||||
purpose \
|
||||
kdeclarative \
|
||||
shared-mime-info-native \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "1d24264b2a20d8a14fa601c626f72a6d"
|
||||
SRC_URI[sha256sum] = "64ab3cf06222b95f021941d8c430c70918c04c3ea988f7ccf5ef87c6b69b4465"
|
||||
SRC_URI[md5sum] = "57e49c3995117945938669e24aff9352"
|
||||
SRC_URI[sha256sum] = "fcfe2474bc271e730ed95edb21ae46e93c1ce773ed036f63c9fb2db02cbc7e64"
|
||||
|
||||
SRC_URI += " \
|
||||
file://0001-CMakeLists.txt-make-MLT_PREFIX-configurable.patch \
|
||||
|
||||
@@ -22,8 +22,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "75be2e3b15fc4e00fd8c5dd4e206f745"
|
||||
SRC_URI[sha256sum] = "eef733c2089ce8fc40405653fa5e3aaafe67a1cc5d074f744e49b185291c0617"
|
||||
SRC_URI[md5sum] = "daa73fb65eb5b48928b3b4e4511d6e06"
|
||||
SRC_URI[sha256sum] = "a8a9e8a4c2bdc1855078383f10720b4b3a388c678dee148494dc18ba5019a6ae"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/k*5 \
|
||||
|
||||
@@ -26,8 +26,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "fefd5cf52e4bdb07765f8067abca1eb6"
|
||||
SRC_URI[sha256sum] = "6a433c8b628f105d210efd5b5532763e09a4e7190d71f8cf11931ab1605abeec"
|
||||
SRC_URI[md5sum] = "fe3970879eec195f387c772e6fd6fba5"
|
||||
SRC_URI[sha256sum] = "b3d959cc195b924ca877df2762c3e8ef115ac41c2355f34efbbcaabe9b02b500"
|
||||
SRC_URI+="file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch"
|
||||
|
||||
FILES_${PN} += " \
|
||||
|
||||
@@ -21,8 +21,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "69b66e2a46e453c98bf0251a5c78a0d2"
|
||||
SRC_URI[sha256sum] = "6ebb7d361a8456e3a3bc7bac995a0224cd76eefd724ff62ba0d6348f7eb1f4f2"
|
||||
SRC_URI[md5sum] = "fa127f073bbb0075741c12d0017b2f44"
|
||||
SRC_URI[sha256sum] = "ad123b24f88e1ade5a845c16a84a483835cce31b92741107d8dbd02f462d4cd9"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/icons \
|
||||
|
||||
@@ -28,8 +28,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "3d7a240b68d630baa244495c7720ebb8"
|
||||
SRC_URI[sha256sum] = "a03817fb16739b1b235dc54ddeda2c2ebc6605a0c7678e02af24c05271c0b77a"
|
||||
SRC_URI[md5sum] = "7af7f7f466600d08ca11aa1f24e9c977"
|
||||
SRC_URI[sha256sum] = "5b4a9ed17d0898c74cf7fd1612e2d055086d5e04148b3b17df5977255fc240b8"
|
||||
|
||||
SRC_URI += " \
|
||||
file://0001-fix-build-for-qtbase-without-session-management.patch \
|
||||
@@ -45,5 +45,3 @@ FILES_${PN} += " \
|
||||
${datadir}/kde4 \
|
||||
${libdir}/libkdeinit5_khelpcenter.so \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} += "perl"
|
||||
|
||||
@@ -16,7 +16,6 @@ DEPENDS += " \
|
||||
qtwebengine \
|
||||
\
|
||||
exiv2 \
|
||||
taglib \
|
||||
kactivities \
|
||||
karchive \
|
||||
kauth-native \
|
||||
@@ -25,6 +24,7 @@ DEPENDS += " \
|
||||
kcoreaddons-native \
|
||||
kdbusaddons \
|
||||
kdoctools-native \
|
||||
kdesignerplugin-native \
|
||||
sonnet-native \
|
||||
kdnssd \
|
||||
kiconthemes \
|
||||
@@ -35,7 +35,6 @@ DEPENDS += " \
|
||||
solid \
|
||||
kbookmarks \
|
||||
kguiaddons \
|
||||
syntax-highlighting \
|
||||
shared-mime-info-native \
|
||||
"
|
||||
|
||||
@@ -50,12 +49,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "3da78e506ba30497ac303f8fe80628f7"
|
||||
SRC_URI[sha256sum] = "e38e872f78ff24fe512ec7ff9ed4f6b6a8e1fef6111fdb0222c133bed0a8861f"
|
||||
SRC_URI += " \
|
||||
file://0001-Do-not-find-use-taglib-config.patch \
|
||||
file://0002-Disable-nfs-for-now.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "93e86cccf0b4d4868d5b32e16fa5299f"
|
||||
SRC_URI[sha256sum] = "f8879abaea6fcf31ee0bd4a55d0c24a5fded6d61abed1b059f704f797793aef2"
|
||||
|
||||
# gperf creates hard #line links
|
||||
do_install_prepend() {
|
||||
@@ -78,5 +73,3 @@ FILES_${PN} += " \
|
||||
\
|
||||
${OE_QMAKE_PATH_PLUGINS} \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} += "perl"
|
||||
|
||||
@@ -1,37 +0,0 @@
|
||||
From b857bad2806372c65cd72d4515e1173834475496 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Sun, 17 Nov 2019 19:14:00 +0100
|
||||
Subject: [PATCH] Do not find/use taglib-config
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
| -- Could NOT find Taglib: Found unsuitable version "ERROR: /usr/bin/taglib-config should not be used, use an alternative such as pkg-config
|
||||
|
||||
Upstream-Status: Inappropriate [oe-specific]
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
---
|
||||
cmake/FindTaglib.cmake | 6 ------
|
||||
1 file changed, 6 deletions(-)
|
||||
|
||||
diff --git a/cmake/FindTaglib.cmake b/cmake/FindTaglib.cmake
|
||||
index d09fb6f..25eb8f6 100644
|
||||
--- a/cmake/FindTaglib.cmake
|
||||
+++ b/cmake/FindTaglib.cmake
|
||||
@@ -35,12 +35,6 @@ if(NOT TAGLIB_MIN_VERSION)
|
||||
set(TAGLIB_MIN_VERSION "1.4")
|
||||
endif(NOT TAGLIB_MIN_VERSION)
|
||||
|
||||
-if(NOT WIN32)
|
||||
- find_program(TAGLIBCONFIG_EXECUTABLE NAMES taglib-config PATHS
|
||||
- ${BIN_INSTALL_DIR}
|
||||
- )
|
||||
-endif(NOT WIN32)
|
||||
-
|
||||
#reset vars
|
||||
set(TAGLIB_LIBRARIES)
|
||||
set(TAGLIB_CFLAGS)
|
||||
--
|
||||
2.21.0
|
||||
|
||||
@@ -1,35 +0,0 @@
|
||||
From 56be2d68e5a8213c199006bbb8b3461764764e24 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Sun, 17 Nov 2019 21:16:59 +0100
|
||||
Subject: [PATCH] Disable nfs for now
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
It seems there was a change in oe-core's glibc/libtirpc causing missing symbols
|
||||
for libtirpc.
|
||||
|
||||
Upstream-Status: Inappropriate
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 3 ---
|
||||
1 file changed, 3 deletions(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 55236d4..0f31e67 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -177,9 +177,6 @@ if(NOT WIN32)
|
||||
endif()
|
||||
check_include_files(rpc/rpc.h HAVE_RPC_RPC_H)
|
||||
add_feature_info("NFS kioslave" HAVE_RPC_RPC_H "The RPC library is needed to build the NFS kioslave")
|
||||
- if(HAVE_RPC_RPC_H)
|
||||
- add_subdirectory( nfs )
|
||||
- endif()
|
||||
endif()
|
||||
|
||||
# KDNSSD before 5.54 suffers from a race condition in avahi's dbus API and
|
||||
--
|
||||
2.21.0
|
||||
|
||||
@@ -19,8 +19,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "d22f41a42bd3065be69d21cf847d15cb"
|
||||
SRC_URI[sha256sum] = "216e5db763f72ff1f4ada339912dc686fa7a6cea0dafc8b9eab35601edabc950"
|
||||
SRC_URI[md5sum] = "f0d06288f2b55f63fd67d747f2868216"
|
||||
SRC_URI[sha256sum] = "04f1357e46bb3e32c85f08c9d5655cde6351c6efd27824a17019ea8562e8d5ba"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kxmlgui5 \
|
||||
|
||||
@@ -23,8 +23,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "de39196ffa941da79873706fbfa210ef"
|
||||
SRC_URI[sha256sum] = "d74446083f6ead6d7571e0ca4ff37af3f8167cc16ed7f67576155a000b41ca22"
|
||||
SRC_URI[md5sum] = "73db8ba5adba90700a3447833304341e"
|
||||
SRC_URI[sha256sum] = "188a8d921b72965d4ed0f6490048cde7b9d5606cca7d3cea12463dc71a90ccf6"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/config.kcfg \
|
||||
|
||||
@@ -23,8 +23,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "ee0c16f73fbc0ac0ddf0f004136a966b"
|
||||
SRC_URI[sha256sum] = "4ebb5d932ab43f11f81d0fa64aef871ffecaab4a2c3a5c4dbf10416a86fa8329"
|
||||
SRC_URI[md5sum] = "f308aa02233b191051a4da306bc4b899"
|
||||
SRC_URI[sha256sum] = "40c16b57614098555c32252c75e3890922b62d7005b9059f6ae92e11c96d980f"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/icons \
|
||||
|
||||
@@ -0,0 +1,44 @@
|
||||
From 9757ed6c44884eb7890f31e015f5788de88891ac Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Thu, 21 Dec 2017 00:22:43 +0100
|
||||
Subject: [PATCH] Fix build with QT_NO_SESSIONMANAGER set
|
||||
|
||||
---
|
||||
apps/KMixApp.cpp | 4 ++++
|
||||
apps/kmix.cpp | 2 ++
|
||||
2 files changed, 6 insertions(+)
|
||||
|
||||
diff --git a/apps/KMixApp.cpp b/apps/KMixApp.cpp
|
||||
index d00309b..b00f27a 100644
|
||||
--- a/apps/KMixApp.cpp
|
||||
+++ b/apps/KMixApp.cpp
|
||||
@@ -87,7 +87,11 @@ bool KMixApp::restoreSessionIfApplicable(bool hasArgKeepvisibility, bool reset)
|
||||
*/
|
||||
creationLock.lock();
|
||||
|
||||
+#ifndef QT_NO_SESSIONMANAGER
|
||||
bool restore = qApp->isSessionRestored(); // && KMainWindow::canBeRestored(0);
|
||||
+#else
|
||||
+ bool restore = false;
|
||||
+#endif
|
||||
qCDebug(KMIX_LOG) << "Starting KMix using keepvisibility=" << hasArgKeepvisibility << ", failsafe=" << reset << ", sessionRestore=" << restore;
|
||||
int createCount = 0;
|
||||
if (restore)
|
||||
diff --git a/apps/kmix.cpp b/apps/kmix.cpp
|
||||
index b97852c..cd74d03 100644
|
||||
--- a/apps/kmix.cpp
|
||||
+++ b/apps/kmix.cpp
|
||||
@@ -99,8 +99,10 @@ KMixWindow::KMixWindow(bool invisible, bool reset) :
|
||||
recreateGUI(false, QString(), true, reset);
|
||||
}
|
||||
|
||||
+#ifndef QT_NO_SESSIONMANAGER
|
||||
if (!qApp->isSessionRestored() ) // done by the session manager otherwise
|
||||
setInitialSize();
|
||||
+#endif
|
||||
|
||||
fixConfigAfterRead();
|
||||
theKMixDeviceManager->initHotplug();
|
||||
--
|
||||
2.9.5
|
||||
|
||||
@@ -15,9 +15,9 @@ DEPENDS += " \
|
||||
kauth-native \
|
||||
kconfig-native \
|
||||
kcoreaddons-native \
|
||||
kdoctools-native \
|
||||
kconfigwidgets \
|
||||
kpackage-native \
|
||||
kdesignerplugin-native \
|
||||
sonnet-native \
|
||||
kdbusaddons \
|
||||
kglobalaccel \
|
||||
@@ -32,8 +32,10 @@ PACKAGECONFIG = "pulseaudio"
|
||||
PACKAGECONFIG[pulseaudio] = ",,pulseaudio"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "f5cb90fe0db16ef5be1028ce03cde0b9"
|
||||
SRC_URI[sha256sum] = "cf71abee1ab35423b0daeaf1fbddbcdcb2f40fd946dfabf0cb19b8762b8582bc"
|
||||
SRC_URI[md5sum] = "2071a1c7b592a238bc03503e8d0f3cfc"
|
||||
SRC_URI[sha256sum] = "4edf31a36a5d700cc190ba7a5a0d76789729069d48324a22bda7977cb4ed081a"
|
||||
|
||||
SRC_URI += "file://0001-Fix-build-with-QT_NO_SESSIONMANAGER-set.patch"
|
||||
|
||||
EXTRA_OECMAKE += "-DKMIX_KF5_BUILD=1"
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ SUMMARY = "Mathematical Function Plotter"
|
||||
LICENSE = "GPLv2 & GFDL-1.2"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=7974e16b472f00bbbadf2d006aa00c50 \
|
||||
file://COPYING.DOC;md5=28d73eafa40ebd0ccdc6b37df8de10a3 \
|
||||
file://COPYING.DOC;md5=ad1419ecc56e060eccf8184a87c4285f \
|
||||
"
|
||||
|
||||
inherit kde-apps gtk-icon-cache
|
||||
@@ -23,8 +23,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "6a473954c71262f705137ed3e2e2b261"
|
||||
SRC_URI[sha256sum] = "777408873baa5d6ce236d71bc2935a89fa414fb9f59049ba6e1ae88d581f580e"
|
||||
SRC_URI[md5sum] = "6f92126fc111e28b733f458a536ac914"
|
||||
SRC_URI[sha256sum] = "2dd6eec34088b5d3b591091cce41616ee310a66aa2d16e5800db56044d60dd7b"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/config.kcfg \
|
||||
|
||||
@@ -2,7 +2,7 @@ SUMMARY = "KolourPaint - Paint Program"
|
||||
LICENSE = "GPLv2 & GFDL-1.2 & LGPLv2 & MIT"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=7549f6da638b0246572ed9cf4275b860 \
|
||||
file://COPYING.DOC;md5=28d73eafa40ebd0ccdc6b37df8de10a3 \
|
||||
file://COPYING.DOC;md5=ad1419ecc56e060eccf8184a87c4285f \
|
||||
file://COPYING.LIB;md5=3214f080875748938ba060314b4f727d \
|
||||
"
|
||||
|
||||
@@ -11,11 +11,10 @@ inherit kde-apps gtk-icon-cache
|
||||
DEPENDS += "\
|
||||
kauth-native \
|
||||
kconfig-native \
|
||||
sonnet-native \
|
||||
kdoctools-native \
|
||||
kdelibs4support-native \
|
||||
kdesignerplugin-native \
|
||||
sonnet-native \
|
||||
kdelibs4support \
|
||||
kdelibs4support-native \
|
||||
kconfigwidgets \
|
||||
kcoreaddons-native \
|
||||
kdoctools \
|
||||
@@ -30,8 +29,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "ae04fd585380915bfafbb11251bc0422"
|
||||
SRC_URI[sha256sum] = "aac61cfc561b4d4759b086508c53c525db6899ae11a2400c4ca701fcb5649c8d"
|
||||
SRC_URI[md5sum] = "07f4861f1b09d08fc954cf2ea8c7189c"
|
||||
SRC_URI[sha256sum] = "450b714f0d73b59d31c4ceda142a3496d14e51d84b8c8968548a15e05c138f98"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/k*5 \
|
||||
|
||||
@@ -40,8 +40,8 @@ DEPENDS += " \
|
||||
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "81c12c16135df39bdf42c895c77f27d0"
|
||||
SRC_URI[sha256sum] = "2cc610109ff8ddc6efa6ea83f0153f4b1d72e4be65d8dbde9cfd526c257e7025"
|
||||
SRC_URI[md5sum] = "1378218f3e108403decdbc8ad846cc49"
|
||||
SRC_URI[sha256sum] = "01ff3245d755a6e38207e58e50e5f82e5c681ead2ad7176d46aec00a8a562e08"
|
||||
|
||||
# do not move so-libs to -dev package
|
||||
FILES_SOLIBSDEV = ""
|
||||
@@ -49,7 +49,6 @@ FILES_SOLIBSDEV = ""
|
||||
FILES_${PN} += " \
|
||||
${datadir}/k*5 \
|
||||
${datadir}/khotkeys \
|
||||
${datadir}/knsrcfiles \
|
||||
${OE_QMAKE_PATH_PLUGINS} \
|
||||
${libdir}/libkdeinit5_konsole.so \
|
||||
"
|
||||
|
||||
@@ -27,8 +27,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "b2dbb97f4ba3837de38df312bff40567"
|
||||
SRC_URI[sha256sum] = "b1414eb0c04396468f40ea84fe71077b98476b4b76c0d3abb95ae4afd49e27a7"
|
||||
SRC_URI[md5sum] = "d0b23b0430f650ce898a57edb7b11024"
|
||||
SRC_URI[sha256sum] = "62c31d6f7a9bb49c09725722bea472811d897b149e29558ca6e248b5d2a41377"
|
||||
|
||||
FILES_SOLIBSDEV = ""
|
||||
|
||||
|
||||
@@ -30,8 +30,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "b315cfd0b544c175806a73d2d62a07c8"
|
||||
SRC_URI[sha256sum] = "30f15e40e1347c7d746bfdef7dffc0a0a9aecef8a960c875b68fab255c43d82c"
|
||||
SRC_URI[md5sum] = "e05fcf9365abb666b38c963988ce040e"
|
||||
SRC_URI[sha256sum] = "818ef2ded02caacf2ccf3c012e992070c3b898db319682e8a42cf5726d56b3fc"
|
||||
SRC_URI+="file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch"
|
||||
|
||||
FILES_${PN} += " \
|
||||
|
||||
@@ -33,13 +33,12 @@ DEPENDS += " \
|
||||
kcrash \
|
||||
"
|
||||
|
||||
PV = "4.1.8"
|
||||
PVEXT = ""
|
||||
PVEXT = ".101"
|
||||
SRC_URI = " \
|
||||
${KDE_MIRROR}/stable/${BPN}/${PV}/${BPN}-${PV}${PVEXT}.tar.gz \
|
||||
"
|
||||
SRC_URI[md5sum] = "995192161d98489d7ced1fd493fe150e"
|
||||
SRC_URI[sha256sum] = "0476c9e2279f0ae690c2ed02e1aa9c3d491943643f9859355a02657318bd5940"
|
||||
SRC_URI[md5sum] = "a172b864ca7723b5a033fdc730d9296c"
|
||||
SRC_URI[sha256sum] = "5bc95baa3980b7d75eb6bf103f72344014eac7733fd8a0780a7ec87dc2826f5f"
|
||||
S = "${WORKDIR}/${BPN}-${PV}${PVEXT}"
|
||||
|
||||
OECMAKE_GENERATOR="Unix Makefiles"
|
||||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = " \
|
||||
file://COPYING.DOC;md5=ad1419ecc56e060eccf8184a87c4285f \
|
||||
"
|
||||
|
||||
inherit kde-apps gtk-icon-cache features_check
|
||||
inherit kde-apps gtk-icon-cache distro_features_check
|
||||
|
||||
REQUIRED_DISTRO_FEATURES = "x11 opengl"
|
||||
|
||||
@@ -29,8 +29,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "2f4e384c42fdf526bf943c8fc8e9d834"
|
||||
SRC_URI[sha256sum] = "82bf07385d131968ffd49a58404984fd506481158097aa063d954618d2679a65"
|
||||
SRC_URI[md5sum] = "904d4cdab886484afb1fc90dfd522a14"
|
||||
SRC_URI[sha256sum] = "4a44248f2bde9c66c911fe7ed7bd54e31956053dac18e29217a355ad2b3a05e1"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/icons \
|
||||
|
||||
@@ -22,7 +22,7 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "056ed1395f4c17c6c230ae99cdec6e2b"
|
||||
SRC_URI[sha256sum] = "97fca55ae5481d77628531482da99ece40cef2c81de633fe4c1e99206d17391d"
|
||||
SRC_URI[md5sum] = "ce0e9290effc7ed38ab6232809843f4b"
|
||||
SRC_URI[sha256sum] = "93f276698b74af654f3ed147d5c025162bd919ec6c79a7c7dd7678051c307e52"
|
||||
|
||||
FILES_${PN} += "${datadir}/kxmlgui5"
|
||||
|
||||
@@ -24,8 +24,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "0796056642421fc9fcec9c7e072fc895"
|
||||
SRC_URI[sha256sum] = "00c1362d1454f4593e1f99847b97b3da99931c74ceafc3c3350337af0038b985"
|
||||
SRC_URI[md5sum] = "6d90a44ee14a0937bc5a1f983fc46421"
|
||||
SRC_URI[sha256sum] = "78232285c08241dc06cd6da88dcdce0d850417dd73f0d07034ec6d9a6f97f478"
|
||||
SRC_URI += "file://0001-fix-build-with-QT_NO_SESSIONMANAGER-set.patch"
|
||||
|
||||
FILES_${PN} += " \
|
||||
|
||||
@@ -12,7 +12,6 @@ DEPENDS += "\
|
||||
fftw \
|
||||
libopus \
|
||||
libsamplerate0 \
|
||||
librsvg-native \
|
||||
\
|
||||
kcompletion \
|
||||
kconfig-native \
|
||||
@@ -33,8 +32,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "deb593947ca90bc2deab8ab3d3d5a487"
|
||||
SRC_URI[sha256sum] = "bde8d2c3805b52bdcf0371c28e870d20fdfdd8b69831a9ba4e59ee9ae0a863ef"
|
||||
SRC_URI[md5sum] = "e9c5692d83493a4293a706c41b0762fe"
|
||||
SRC_URI[sha256sum] = "4ca9a15ecd06b96e013855f8109b52fcd4a848652438b2e7a2f55a8fcb1d1c48"
|
||||
SRC_URI += "file://0001-FIND_REQUIRED_PROGRAM-is-broken-use-the-tools-direct.patch"
|
||||
|
||||
# Aagh: To select a soundcard we need to select another type - so keep oss in as dummy
|
||||
|
||||
@@ -13,5 +13,5 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "841053c576dad5fcc26a931859fe0fd2"
|
||||
SRC_URI[sha256sum] = "7fe4ade52c2e1e1ec3074fe52ebfc8838193b50791f2f26256f04178015ef87e"
|
||||
SRC_URI[md5sum] = "75999ed863aef72bcf62a40910c0ca20"
|
||||
SRC_URI[sha256sum] = "c4b6541419b2ebee15d24744d10e67c9a137e616766e765c13e5056c2a37ef99"
|
||||
|
||||
@@ -43,8 +43,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "a7901a6057a6d6b76f35a5ee126f2c3d"
|
||||
SRC_URI[sha256sum] = "019cdc0c702b8c9cacabc36ec2c81951e43ff80dbdfe527cba0dc5f5649dbb89"
|
||||
SRC_URI[md5sum] = "69830d93bd7dfa8882a45a9d7a45a0a1"
|
||||
SRC_URI[sha256sum] = "7c833fe476043f0492a09a52af60ee7652805cccbbb72e5f473a9d35abff9ed9"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/carddecks \
|
||||
|
||||
@@ -13,5 +13,5 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "d88d6716643376bd36110b8c7f283185"
|
||||
SRC_URI[sha256sum] = "4c8a1acc4fe6c7105130ac93f5486ddbffb09921a9f34d3af418bd7e1695435e"
|
||||
SRC_URI[md5sum] = "50ef0905ed41eb586145dac0274ca226"
|
||||
SRC_URI[sha256sum] = "1d14ff63af42ab7e19e2039648a95ea5dc946afbe3e3df52c17ce1618a02ebdc"
|
||||
|
||||
@@ -19,8 +19,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "a027379fead0f6d87e15d0aa56a12745"
|
||||
SRC_URI[sha256sum] = "fd7d036ba3b17246fad42e0366003233c42f5b03df881d6bc6886518c2acb165"
|
||||
SRC_URI[md5sum] = "a2ffeb6f68f7a84ad6e01c2a58b12708"
|
||||
SRC_URI[sha256sum] = "25e5cea50b6c96f18efa8d013ab58abfaac7845edb969b8e63e0c297482a6be4"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kmahjongglib \
|
||||
|
||||
@@ -26,8 +26,8 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "4ced8a1ee9e457c091dbd69420252486"
|
||||
SRC_URI[sha256sum] = "e25de54944ca32b32b4eeddd85e8ca9764a04de7c1d7a2d350d41cbda8105aef"
|
||||
SRC_URI[md5sum] = "4ae0ce5d6989aeb8f877f63e2a4ea473"
|
||||
SRC_URI[sha256sum] = "cce11b9384d27006855a141d2241a67d05679baa7096db2311c49a78bd642fed"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/config.kcfg \
|
||||
|
||||
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = " \
|
||||
file://LICENSE.GPL-3;md5=f27defe1e96c2e1ecd4e0c9be8967949 \
|
||||
file://LICENSE.txt;md5=e9b5891877660f283be4bc396de0570f \
|
||||
file://COPYING-CMAKE-SCRIPTS;md5=54c7042be62e169199200bc6477f04d1 \
|
||||
file://COPYING.DOC;md5=28d73eafa40ebd0ccdc6b37df8de10a3 \
|
||||
file://COPYING.DOC;md5=ad1419ecc56e060eccf8184a87c4285f \
|
||||
"
|
||||
|
||||
inherit kde-apps cmake_lib gettext
|
||||
@@ -31,8 +31,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "b61afbd0fa7cf3afe13320aac96d00a3"
|
||||
SRC_URI[sha256sum] = "cd5d7f758d2234dc8e2fa638b9e1326461655e10dbe21910dbef029e80ef7a68"
|
||||
SRC_URI[md5sum] = "49b86d84d38ccc0804c922a9502a2b12"
|
||||
SRC_URI[sha256sum] = "0bfd7ae576e42ebbddadc8c83c2fec5edaf462bcf284642b1002d36d751b24ee"
|
||||
|
||||
EXTRA_OECMAKE += " \
|
||||
-DMARBLE_PRI_INSTALL_DIR=${OE_QMAKE_PATH_QT_ARCHDATA}/mkspecs/modules \
|
||||
|
||||
@@ -2,7 +2,7 @@ SUMMARY = "A KDE Software for Music Education"
|
||||
LICENSE = "GPLv2 & GFDL-1.3"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
||||
file://COPYING.DOC;md5=10ce6fc3438e5c4c933bfb5db3b097ec \
|
||||
file://COPYING.DOC;md5=10b9de612d532fdeeb7fe8fcd1435cc6 \
|
||||
"
|
||||
|
||||
inherit kde-apps gtk-icon-cache
|
||||
@@ -21,8 +21,9 @@ DEPENDS += "\
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "171ab73009a4e2a87d2691f7653f3366"
|
||||
SRC_URI[sha256sum] = "8af3e0b5fd17d7043499391273232a1649ea3dec5e69faab5a4dc4452080605c"
|
||||
SRC_URI[md5sum] = "44c25f80973304f0d683dd7fc4a48aa9"
|
||||
SRC_URI[sha256sum] = "9244ec364d031c73f9aed9568012a28b847ec4dceca61040324af7afd3d64009"
|
||||
SRC_URI += "file://0001-Do-not-try-to-find-qtquick-compiler.patch"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/kxmlgui5 \
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
From 08d1d50a8e9433a0fe163d7b1251dafc66bcc40e Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Fri, 14 Dec 2018 01:41:47 +0100
|
||||
Subject: [PATCH] Do not try to find qtquick-compiler
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
we do not have qtdeclarative-native and even if we would: is output target
|
||||
binary compatible?
|
||||
|
||||
Upstream-Status: Inappropriate [embedded specific]
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index f13838b..9788aeb 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -41,7 +41,7 @@ find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
|
||||
Svg
|
||||
)
|
||||
|
||||
-find_package(Qt5 CONFIG QUIET OPTIONAL_COMPONENTS QuickCompiler)
|
||||
+#find_package(Qt5 CONFIG QUIET OPTIONAL_COMPONENTS QuickCompiler)
|
||||
|
||||
IF(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Android")
|
||||
find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
|
||||
--
|
||||
2.14.5
|
||||
|
||||
@@ -3,20 +3,12 @@ LICENSE = "GPLv2 & GFDL-1.2 & LGPL-2.1"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=5a3169a2d39a757efd8b7aa66a69d97b \
|
||||
file://COPYING.LIB;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
|
||||
file://COPYING.DOC;md5=d8855fca80aa0b428deafa405d0ea17a \
|
||||
file://COPYING.DOC;md5=24ea4c7092233849b4394699333b5c56 \
|
||||
"
|
||||
|
||||
inherit kde-apps gtk-icon-cache
|
||||
|
||||
SRC_URI += "file://0001-Do-not-build-docs.patch"
|
||||
|
||||
DEPENDS += " \
|
||||
ki18n-native \
|
||||
kconfig-native \
|
||||
kauth-native \
|
||||
kcoreaddons-native \
|
||||
kdoctools-native \
|
||||
sonnet-native \
|
||||
libkexiv2 \
|
||||
qca \
|
||||
tiff \
|
||||
@@ -26,14 +18,16 @@ DEPENDS += " \
|
||||
karchive \
|
||||
kbookmarks \
|
||||
kcompletion \
|
||||
kconfig-native \
|
||||
kconfigwidgets \
|
||||
kauth-native \
|
||||
kcoreaddons-native \
|
||||
kdbusaddons \
|
||||
kdoctools-native \
|
||||
sonnet-native \
|
||||
kiconthemes \
|
||||
kirigami2 \
|
||||
purpose \
|
||||
kjs \
|
||||
kio \
|
||||
ki18n \
|
||||
kparts \
|
||||
threadweaver \
|
||||
kwallet \
|
||||
@@ -42,10 +36,8 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "b9ba8f9b680d18a35415352073fd1e6a"
|
||||
SRC_URI[sha256sum] = "cea30fe0c2c2b8394e76efe5c945eab1cc9619097291bd9236794b42b09523e5"
|
||||
|
||||
EXTRA_OECMAKE += "-DBUILD_TESTING=OFF"
|
||||
SRC_URI[md5sum] = "6d76a028cd3c84e392326d095244bf91"
|
||||
SRC_URI[sha256sum] = "d7ef9b59acb5746ebc64399f4c1a99faf0c1530bf6a818b3bfd34b73476d90ab"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/k*5 \
|
||||
|
||||
@@ -1,33 +0,0 @@
|
||||
From eec3c9a96c7302867e68bfdad7f50f5c08d4c047 Mon Sep 17 00:00:00 2001
|
||||
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
||||
Date: Wed, 21 Aug 2019 22:14:58 +0200
|
||||
Subject: [PATCH] Do not build docs
|
||||
MIME-Version: 1.0
|
||||
Content-Type: text/plain; charset=UTF-8
|
||||
Content-Transfer-Encoding: 8bit
|
||||
|
||||
We cannot remove kdoctools from dependencies due to other cmake files looking
|
||||
for it.
|
||||
|
||||
Upstream-Status: Pendind
|
||||
|
||||
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
||||
---
|
||||
CMakeLists.txt | 4 +---
|
||||
1 file changed, 1 insertion(+), 3 deletions(-)
|
||||
|
||||
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||||
index 3a2cad7..b8aeae4 100644
|
||||
--- a/CMakeLists.txt
|
||||
+++ b/CMakeLists.txt
|
||||
@@ -483,6 +483,4 @@ install(EXPORT Okular5Targets DESTINATION "${CMAKECONFIG_INSTALL_DIR}" FILE Okul
|
||||
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
|
||||
|
||||
ki18n_install(po)
|
||||
-if (KF5DocTools_FOUND)
|
||||
- kdoctools_install(po)
|
||||
-endif()
|
||||
+
|
||||
--
|
||||
2.21.0
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
SUMMARY = "The new screenshot capture utility, replaces KSnapshot"
|
||||
LICENSE = "GPLv2 & GFDL-1.3"
|
||||
LICENSE = "GPLv2 & GFDL-1.2"
|
||||
LIC_FILES_CHKSUM = " \
|
||||
file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
|
||||
file://COPYING.DOC;md5=10ce6fc3438e5c4c933bfb5db3b097ec \
|
||||
file://COPYING.DOC;md5=10b9de612d532fdeeb7fe8fcd1435cc6 \
|
||||
"
|
||||
|
||||
inherit kde-apps gtk-icon-cache
|
||||
@@ -31,14 +31,11 @@ DEPENDS += " \
|
||||
"
|
||||
|
||||
PV = "${KDE_APP_VERSION}"
|
||||
SRC_URI[md5sum] = "48643a007510e6aee75956f33e5de4f6"
|
||||
SRC_URI[sha256sum] = "3717b7ebd314cac47c263c304c54c14b0115b15cfa4b87201f5ea27a2f4e9b8a"
|
||||
SRC_URI[md5sum] = "39ef496c6cadd6ae308ea9cf612fa447"
|
||||
SRC_URI[sha256sum] = "8abf85b85de7844c503ef84182303c47cf425f5c14d71e723e3c887ee87ce06e"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/dbus-1 \
|
||||
${datadir}/khotkeys \
|
||||
${datadir}/knotifications5 \
|
||||
${datadir}/kglobalaccel \
|
||||
${datadir}/kconf_update \
|
||||
${libdir}/kconf_update_bin \
|
||||
"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user