diff options
Diffstat (limited to 'lxqt-base/lxqt-qtplugin')
-rw-r--r-- | lxqt-base/lxqt-qtplugin/Manifest | 1 | ||||
-rw-r--r-- | lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.11.0.ebuild | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/lxqt-base/lxqt-qtplugin/Manifest b/lxqt-base/lxqt-qtplugin/Manifest new file mode 100644 index 00000000..81f10eee --- /dev/null +++ b/lxqt-base/lxqt-qtplugin/Manifest @@ -0,0 +1 @@ +DIST lxqt-qtplugin-0.11.0.tar.xz 20764 SHA256 c1fdaba78d139e3cfdfb783c60e4f84632ce296a7cf8d5444d60ca1d1e5dbf59 SHA512 2e8d1e26b1b2d28bb874d1eb61a2e6a678e8b3477957016bc8e9783a13c821450746cbfe59954a09142d94e67203ef8a28eab8ff8d3d0798f87b5a920ec80b09 WHIRLPOOL eafec7dbdc6c3f7e8436b684548fe9c311328eefd784c7669b9fa7a9598c2144e163298e1194b45dc98aef26cfeee4070a725d717c182933a3f39e2b24718001 diff --git a/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.11.0.ebuild b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.11.0.ebuild new file mode 100644 index 00000000..13292f49 --- /dev/null +++ b/lxqt-base/lxqt-qtplugin/lxqt-qtplugin-0.11.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="LXQt system integration plugin for Qt" +HOMEPAGE="http://lxqt.org/" + +if [[ ${PV} = *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="git://git.lxde.org/git/lxde/${PN}.git" +else + SRC_URI="https://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="LGPL-2.1+" +SLOT="0" + +RDEPEND=" + dev-libs/libdbusmenu-qt[qt5(+)] + >=dev-libs/libqtxdg-2.0.0 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + ~lxqt-base/liblxqt-${PV} + x11-libs/libX11" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5" + +src_configure() { + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF ) + cmake-utils_src_configure +} |