forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ben Kohler <[email protected]>
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST nm-tray-0.5.0.tar.gz 53854 BLAKE2B e83c31606905909a62df57b2e744ff133a5cff91673ff229bd53ca1cca17840989efb6d813053700562dc8b434a6676a9310ff4d50b39fde7daf580986a19cad SHA512 ba118f7fd07a60af5ed6b7b53cf771f339c89f9bef02aeb2f59bfbddd3e896bdc31aa506437e33cb8fe2ef921c595b76527d61cefd202e9e1f5197762b69ab51 | ||
DIST nm-tray-0.5.1.tar.gz 54689 BLAKE2B 29832744b999b874066d32be2df1819a4b12d0c8ab0bcfb49c4e8f6fa93f9a9cf912de499c2c7f80daf321d4bd6b2c879a0e62f9b91c0e86d1510de3c56193ef SHA512 5d280c90cdec68ed6c9b57f25db1558bf3b337d7b450fa53e9b2b393803ab6477e6659ec48152e6b9821c946240bc69b119633b02e4026d91278eb6be432eead |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 1999-2024 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=8 | ||
|
||
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 ~x86" | ||
|
||
BDEPEND=" | ||
dev-qt/qttools:6[linguist] | ||
>=dev-build/cmake-3.10 | ||
" | ||
RDEPEND=" | ||
dev-qt/qtbase:6[dbus,gui,network,widgets] | ||
kde-frameworks/networkmanager-qt:6 | ||
" | ||
DEPEND="${RDEPEND}" | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DNM_TRAY_XDG_AUTOSTART_DIR=/etc/xdg/autostart | ||
) | ||
|
||
cmake_src_configure | ||
} |