summaryrefslogtreecommitdiff
path: root/app-misc/vcontrold
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /app-misc/vcontrold
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'app-misc/vcontrold')
-rw-r--r--app-misc/vcontrold/Manifest1
-rw-r--r--app-misc/vcontrold/files/vcontrold5
-rw-r--r--app-misc/vcontrold/metadata.xml27
-rw-r--r--app-misc/vcontrold/vcontrold-0.98.11-r1.ebuild43
4 files changed, 0 insertions, 76 deletions
diff --git a/app-misc/vcontrold/Manifest b/app-misc/vcontrold/Manifest
deleted file mode 100644
index e0ad310b6ccb..000000000000
--- a/app-misc/vcontrold/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST vcontrold-0.98.11.tar.gz 108805 BLAKE2B ff9cde5fb807a67a891bdf0feeb692c88f52d2960eef77d12153602bd18588489f08a03ef2c4d6d847d30e2b19870453a48800cdc28f40e8797dda50d3601b3f SHA512 28693472897bae695cd2bab23bc0abd8fa0b85dcf1816983f6876b99a78114f81e5e64f199ca646bd37b6f1603c3824485c78d73e289cf5dbf702c22ed5100dc
diff --git a/app-misc/vcontrold/files/vcontrold b/app-misc/vcontrold/files/vcontrold
deleted file mode 100644
index 369dc6d8e642..000000000000
--- a/app-misc/vcontrold/files/vcontrold
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-command="/usr/sbin/vcontrold"
diff --git a/app-misc/vcontrold/metadata.xml b/app-misc/vcontrold/metadata.xml
deleted file mode 100644
index a31c0aaf3771..000000000000
--- a/app-misc/vcontrold/metadata.xml
+++ /dev/null
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person" proxied="yes">
- <email>tl@stonemx.de</email>
- <name>Tobias Leupold</name>
-</maintainer>
-<maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
-</maintainer>
-<longdescription lang="en">
- Vcontrold can be used for communication with Viessmann Vito heatings
- through their Optolink interface using an optical communication device
- (which can be built quite cheap and easily, cf. the homepage of the
- "OpenV" project).
-</longdescription>
-<use>
- <flag name="vclient">
- Build the vclient helper program to talk to vcontrold
- </flag>
- <flag name="vsim">
- Build the vsim helper program (simulates the heating's answers, for
- development and debugging)
- </flag>
-</use>
-</pkgmetadata>
diff --git a/app-misc/vcontrold/vcontrold-0.98.11-r1.ebuild b/app-misc/vcontrold/vcontrold-0.98.11-r1.ebuild
deleted file mode 100644
index 985a1a2cdf8e..000000000000
--- a/app-misc/vcontrold/vcontrold-0.98.11-r1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2025 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
-}