diff options
author | Ben Kohler <bkohler@gentoo.org> | 2020-01-21 14:20:27 -0600 |
---|---|---|
committer | Ben Kohler <bkohler@gentoo.org> | 2020-01-21 14:20:40 -0600 |
commit | dbcff1b5628b32cd64a63dbd832d597fc15a5a3a (patch) | |
tree | f83495a8fe317af8596611e0ea1cd36b35a32e8c /gui-apps/nm-tray/nm-tray-0.4.3.ebuild | |
parent | dev-util/ostree: required fuse >= 2.9.2 (diff) | |
download | gentoo-dbcff1b5628b32cd64a63dbd832d597fc15a5a3a.tar.gz gentoo-dbcff1b5628b32cd64a63dbd832d597fc15a5a3a.tar.bz2 gentoo-dbcff1b5628b32cd64a63dbd832d597fc15a5a3a.zip |
gui-apps/nm-tray: new package
Closes: https://bugs.gentoo.org/688150
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Ben Kohler <bkohler@gentoo.org>
Diffstat (limited to 'gui-apps/nm-tray/nm-tray-0.4.3.ebuild')
-rw-r--r-- | gui-apps/nm-tray/nm-tray-0.4.3.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gui-apps/nm-tray/nm-tray-0.4.3.ebuild b/gui-apps/nm-tray/nm-tray-0.4.3.ebuild new file mode 100644 index 000000000000..d18f9b26f666 --- /dev/null +++ b/gui-apps/nm-tray/nm-tray-0.4.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="A simple Qt-based NetworkManager front-end" +HOMEPAGE="https://github.com/palinek/nm-tray" +SRC_URI="https://github.com/palinek/nm-tray/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +BDEPEND=">=dev-util/cmake-3.10" +DEPEND=" + dev-qt/linguist:5 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 + kde-frameworks/networkmanager-qt +" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}"/nm-tray-0.4.3-missing-include-qmetaenum.patch ) + +src_configure() { + local mycmakeargs=( + -DNM_TRAY_XDG_AUTOSTART_DIR=/etc/xdg/autostart + ) + + cmake_src_configure +} |