gentoo-ebuilds/app-misc/vcontrold/vcontrold-0.98.11.ebuild
Joonas Niilola 00821ec714
app-misc/vcontrold: drop PYTHON_COMPAT from 0.98.11
- we don't need to double-guarantee from the ebuild to have a working
   docutils package installed.

Signed-off-by: Joonas Niilola <juippis@gentoo.org>
2022-10-12 19:36:06 +03:00

43 lines
890 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Daemon for communication with Viessmann Vito heatings"
HOMEPAGE="https://github.com/openv/vcontrold/"
SRC_URI="https://github.com/openv/vcontrold/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE="+man +vclient vsim"
DEPEND="dev-libs/libxml2:2"
RDEPEND="${DEPEND}"
BDEPEND="man? ( dev-python/docutils )"
src_prepare() {
sed "s/@VERSION@/${PV}/" "src/version.h.in" \
> "src/version.h" || die "Setting version failed"
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DMANPAGES="$(usex man)"
-DVCLIENT="$(usex vclient)"
-DVSIM="$(usex vsim)"
)
cmake_src_configure
}
src_install() {
cmake_src_install
doinitd "${FILESDIR}/vcontrold"
insinto /etc/vcontrold/
doins -r xml
}