diff options
author | Ben de Groot <yngwin@gentoo.org> | 2015-02-10 17:08:51 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2015-02-10 17:08:51 +0000 |
commit | 37013718146fa5d596b9914d96732684cb7c9e36 (patch) | |
tree | 444a3ac63522ba909f8ed66485f43190566ff598 /lxqt-base/lxqt-common | |
parent | LXQt 0.9.0 version bump (diff) | |
download | gentoo-2-37013718146fa5d596b9914d96732684cb7c9e36.tar.gz gentoo-2-37013718146fa5d596b9914d96732684cb7c9e36.tar.bz2 gentoo-2-37013718146fa5d596b9914d96732684cb7c9e36.zip |
LXQt 0.9.0 version bump
(Portage version: 2.2.16/cvs/Linux x86_64, signed Manifest commit with key 0x4FDF9CFD2FAC514E!)
Diffstat (limited to 'lxqt-base/lxqt-common')
-rw-r--r-- | lxqt-base/lxqt-common/ChangeLog | 7 | ||||
-rw-r--r-- | lxqt-base/lxqt-common/lxqt-common-0.9.0.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/lxqt-base/lxqt-common/ChangeLog b/lxqt-base/lxqt-common/ChangeLog index d5305e964096..913740f0873f 100644 --- a/lxqt-base/lxqt-common/ChangeLog +++ b/lxqt-base/lxqt-common/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for lxqt-base/lxqt-common # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-common/ChangeLog,v 1.5 2015/01/30 16:32:19 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-common/ChangeLog,v 1.6 2015/02/10 17:08:51 yngwin Exp $ + +*lxqt-common-0.9.0 (10 Feb 2015) + + 10 Feb 2015; Ben de Groot <yngwin@gentoo.org> +lxqt-common-0.9.0.ebuild: + LXQt 0.9.0 version bump 30 Jan 2015; Michael Palimaka <kensington@gentoo.org> lxqt-common-0.7.0.ebuild, lxqt-common-0.8.0.ebuild: diff --git a/lxqt-base/lxqt-common/lxqt-common-0.9.0.ebuild b/lxqt-base/lxqt-common/lxqt-common-0.9.0.ebuild new file mode 100644 index 000000000000..933b840ac601 --- /dev/null +++ b/lxqt-base/lxqt-common/lxqt-common-0.9.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/lxqt-base/lxqt-common/lxqt-common-0.9.0.ebuild,v 1.1 2015/02/10 17:08:51 yngwin Exp $ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="LXQt common resources" +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="LGPL-2.1+" +SLOT="0" + +DEPEND="~lxqt-base/liblxqt-${PV}" +RDEPEND="${DEPEND}" +PDEPEND="~lxqt-base/lxqt-session-${PV}" + +src_install() { + cmake-utils_src_install + dodir "/etc/X11/Sessions" + dosym "/usr/bin/startlxqt" "/etc/X11/Sessions/lxqt" +} |