blob: bbc2fd9e6bf863897445b224a4adbb37f2755915 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 2019-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit linux-info systemd
MY_COMMIT="e1d4b12d22fd710f0155d75585940f0d439f1544"
MY_P="${PN}-${MY_COMMIT}"
DESCRIPTION="Userspace KSM helper daemon"
HOMEPAGE="https://gitlab.com/post-factum/uksmd"
SRC_URI="https://gitlab.com/post-factum/uksmd/-/archive/${MY_COMMIT}/${MY_P}.tar.bz2 -> ${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="sys-libs/libcap-ng
sys-process/procps:="
RDEPEND="${DEPEND}"
CONFIG_CHECK="~KSM"
S="${WORKDIR}/${MY_P}"
PATCHES=( "${FILESDIR}/uksmd-0_pre20200504-respect-cflags-ldflags.patch" )
src_install() {
default
einstalldocs
newinitd "${FILESDIR}/uksmd.init" uksmd
systemd_dounit distro/uksmd.service
}
|