You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/vcontrold/vcontrold-0.98.6.ebuild

45 lines
950 B

# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
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"
RDEPEND="dev-libs/libxml2"
DEPEND="${RDEPEND}
man? ( dev-python/docutils )"
src_prepare() {
sed "s/@VERSION@/${PV}/" "src/version.h.in" \
> "src/version.h" || die "Setting version failed"
eapply "${FILESDIR}"/man_generation.patch
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=(
-DMANPAGES="$(usex man)"
-DVCLIENT="$(usex vclient)"
-DVSIM="$(usex vsim)"
)
cmake-utils_src_configure
}
src_install() {
cmake-utils_src_install
doinitd "${FILESDIR}/vcontrold"
insinto /etc/vcontrold/
doins -r xml
}