diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2016-11-29 19:20:12 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2016-11-29 19:20:12 +0000 |
commit | c9b09c743418238f1b150c923dd20f8b25d01a2f (patch) | |
tree | baa7ba8858197dbf56aa4f5670e720070579fe9c /lxqt-base/lxqt-common/lxqt-common-0.11.0-r1.ebuild | |
parent | 948b3e672e91ac16d14fc089fcd2872f39606639 (diff) |
adjust default lxqt menu, do not mix categories, put entries where they belong
Diffstat (limited to 'lxqt-base/lxqt-common/lxqt-common-0.11.0-r1.ebuild')
-rw-r--r-- | lxqt-base/lxqt-common/lxqt-common-0.11.0-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/lxqt-base/lxqt-common/lxqt-common-0.11.0-r1.ebuild b/lxqt-base/lxqt-common/lxqt-common-0.11.0-r1.ebuild new file mode 100644 index 00000000..86f847ed --- /dev/null +++ b/lxqt-base/lxqt-common/lxqt-common-0.11.0-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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="https://downloads.lxqt.org/lxqt/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="LGPL-2.1+" +SLOT="0" + +DEPEND=">=lxqt-base/liblxqt-0.11.0" +RDEPEND="${DEPEND}" +PDEPEND=">=lxqt-base/lxqt-session-0.11.0" + +src_prepare() { + epatch "${FILESDIR}"/lxqt-applications-menu-cleanup.patch +} + +src_configure() { + local mycmakeargs=( -DPULL_TRANSLATIONS=OFF ) + cmake-utils_src_configure +} + +src_install() { + cmake-utils_src_install + dodir "/etc/X11/Sessions" + dosym "/usr/bin/startlxqt" "/etc/X11/Sessions/lxqt" +} |