diff options
author | Ben de Groot <yngwin@gentoo.org> | 2015-02-10 17:13:56 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2015-02-10 17:13:56 +0000 |
commit | a008ef12afff6373b0e4014c133e11f9348ca7cb (patch) | |
tree | 3df5b30b90f80de7d25f7e017c9de915525f40e3 /lxqt-base/liblxqt/liblxqt-0.9.0.ebuild | |
parent | Stable for HPPA (bug #539220). (diff) | |
download | historical-a008ef12afff6373b0e4014c133e11f9348ca7cb.tar.gz historical-a008ef12afff6373b0e4014c133e11f9348ca7cb.tar.bz2 historical-a008ef12afff6373b0e4014c133e11f9348ca7cb.zip |
LXQt 0.9.0 version bump
Package-Manager: portage-2.2.16/cvs/Linux x86_64
Manifest-Sign-Key: 0x4FDF9CFD2FAC514E!
Diffstat (limited to 'lxqt-base/liblxqt/liblxqt-0.9.0.ebuild')
-rw-r--r-- | lxqt-base/liblxqt/liblxqt-0.9.0.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lxqt-base/liblxqt/liblxqt-0.9.0.ebuild b/lxqt-base/liblxqt/liblxqt-0.9.0.ebuild new file mode 100644 index 000000000000..963a11e06870 --- /dev/null +++ b/lxqt-base/liblxqt/liblxqt-0.9.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/lxqt-base/liblxqt/liblxqt-0.9.0.ebuild,v 1.1 2015/02/10 17:07:38 yngwin Exp $ + +EAPI=5 +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="http://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-2 LGPL-2.1+" +SLOT="0" + +DEPEND=">=dev-libs/libqtxdg-1.0.0 + dev-qt/linguist-tools:5 + 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 +" +RDEPEND="${DEPEND}" + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + [[ $(gcc-version) < 4.8 ]] && \ + die 'The active compiler needs to be gcc 4.8 (or newer)' + fi +} |