summaryrefslogtreecommitdiff
path: root/lxqt-base/liblxqt
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2017-10-22 10:34:22 +0100
committerV3n3RiX <venerix@redcorelinux.org>2017-10-22 10:34:22 +0100
commite57e403d595a1b4239d58ffa01cfd04116e3d876 (patch)
tree670e014359cc66d97abb1f174b1659fc14d06261 /lxqt-base/liblxqt
parent8ae6831a751f37cc69146795decc0732f625e43d (diff)
lxqt-base/lxqt-meta : version bump
Diffstat (limited to 'lxqt-base/liblxqt')
-rw-r--r--lxqt-base/liblxqt/Manifest1
-rw-r--r--lxqt-base/liblxqt/liblxqt-0.12.0.ebuild43
2 files changed, 44 insertions, 0 deletions
diff --git a/lxqt-base/liblxqt/Manifest b/lxqt-base/liblxqt/Manifest
new file mode 100644
index 00000000..adf41640
--- /dev/null
+++ b/lxqt-base/liblxqt/Manifest
@@ -0,0 +1 @@
+DIST liblxqt-0.12.0.tar.xz 51192 SHA256 44bba48b073ded5b0ab3de2ea3575a704bb22d23ce5cc5743f76579c1f084f33 SHA512 63c6c7ca89dafa19242bfd62787af4711ad40369ba848191a5fc51693cf2a5b2d6684d613587d73c824a14d919c44699b440c66d37c51d776def258232736595 WHIRLPOOL 545ded646f73da6b828bcdccb26be4fe5c38fc60ec8feae95cdecf31be2338f373694c982cc962443be371f0eae7aa7006894dfdbf7f93e922000ea8a359cd4a
diff --git a/lxqt-base/liblxqt/liblxqt-0.12.0.ebuild b/lxqt-base/liblxqt/liblxqt-0.12.0.ebuild
new file mode 100644
index 00000000..bc3e6eb3
--- /dev/null
+++ b/lxqt-base/liblxqt/liblxqt-0.12.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit cmake-utils
+
+DESCRIPTION="Common base library for the LXQt desktop environment"
+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://github.com/lxde/${PN}/releases/download/${PV}/${P}.tar.xz"
+ KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+LICENSE="GPL-2 LGPL-2.1+"
+SLOT="0"
+
+RDEPEND=">=dev-libs/libqtxdg-3.1.0
+ dev-qt/qtcore:5
+ dev-qt/qtdbus:5
+ dev-qt/qtgui:5
+ dev-qt/qtwidgets:5
+ dev-qt/qtx11extras:5
+ dev-qt/qtxml:5
+ kde-frameworks/kwindowsystem:5[X]
+ x11-libs/libXScrnSaver"
+DEPEND="${RDEPEND}
+ dev-qt/linguist-tools:5"
+
+pkg_pretend() {
+ if [[ ${MERGE_TYPE} != binary ]]; then
+ tc-is-gcc && [[ $(gcc-version) < 4.8 ]] && \
+ die 'The active compiler needs to be gcc 4.8 (or newer)'
+ fi
+}
+
+src_configure() {
+ local mycmakeargs=( -DPULL_TRANSLATIONS=OFF )
+ cmake-utils_src_configure
+}