Skip to content

Instantly share code, notes, and snippets.

@kergalym
Last active August 4, 2020 19:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kergalym/81c6a9d208687b83ce5359e498eda132 to your computer and use it in GitHub Desktop.
Save kergalym/81c6a9d208687b83ce5359e498eda132 to your computer and use it in GitHub Desktop.
Graphical frontend for the systemd daemon
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Graphical frontend for the systemd daemon."
HOMEPAGE="https://github.com/rthomsen/kcmsystemd"
inherit git-r3 eutils cmake-utils
EGIT_REPO_URI="https://github.com/kergalym/kcmsystemd"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND="${RDEPEND}
sys-apps/systemd
>=dev-libs/boost-1.65
>=dev-qt/qtcore-5.12.3
kde-frameworks/kcoreaddons
kde-frameworks/kconfigwidgets
kde-frameworks/ki18n
"
src_prepare() {
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${EPREFIX}"/usr
)
cmake-utils_src_configure
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment