summaryrefslogtreecommitdiff
path: root/app-misc/vcontrold/vcontrold-0.98.8.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2021-01-08 11:28:34 +0000
committerV3n3RiX <venerix@redcorelinux.org>2021-01-08 11:28:34 +0000
commit24fd814c326e282c4321965c31f341dad77e270d (patch)
tree033d63b33c21a3209964ab56005bb9bdd523630d /app-misc/vcontrold/vcontrold-0.98.8.ebuild
parent129160ec854dca4c3fedb5bcfbcb56930371da0f (diff)
gentoo resync : 08.01.2021
Diffstat (limited to 'app-misc/vcontrold/vcontrold-0.98.8.ebuild')
-rw-r--r--app-misc/vcontrold/vcontrold-0.98.8.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/app-misc/vcontrold/vcontrold-0.98.8.ebuild b/app-misc/vcontrold/vcontrold-0.98.8.ebuild
deleted file mode 100644
index 2e6f68c2c7ed..000000000000
--- a/app-misc/vcontrold/vcontrold-0.98.8.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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"
-
-RDEPEND="dev-libs/libxml2:2"
-DEPEND="${RDEPEND}
- 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
-}