app-misc/ddccontrol-db: add 20240920

Signed-off-by: Michael Mair-Keimberger <mmk@levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/39861
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
This commit is contained in:
Michael Mair-Keimberger
2024-12-27 13:40:05 +01:00
committed by Conrad Kostecki
parent d47e3d9ba3
commit 9a9fe589ea
2 changed files with 31 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ddccontrol-db-20240304.tar.gz 120669 BLAKE2B 5144294ffff45c661edfd24bfe3b9df70544cff2c1f4ff692370b507bc6486dc6a25de61553fea938975daa00932eaab6ad1454c0ef8e34edccb4988061c097e SHA512 ea6db89767272e28769d7ed45cccf8ffcbb734a17174d5dc6c8ca155a75737636d3b9884bb5bae230bddc6ebf06d8d8786e0ad2390d073258abd7bf7cd7a7e65
DIST ddccontrol-db-20240920.tar.gz 122163 BLAKE2B ce4308bf4f10f97ddd60286d27151645fcf92d27761da20bf1f250adc160fe8d124fd128a1000f7bd633e8cc0af1a5449870ea675c4c0212915e7ce6b48e7241 SHA512 b445d679e72d1efb90c54da4c51be0e7a21a9caf7662a5352d1f4fe80d12236c463b14534db02dba3c19d3801a7baa730cb08795332bc02dc64819b31ce03ac6

View File

@@ -0,0 +1,30 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="DDCControl monitor database"
HOMEPAGE="https://github.com/ddccontrol/ddccontrol-db"
SRC_URI="https://github.com/ddccontrol/ddccontrol-db/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="nls"
BDEPEND="
dev-util/intltool
dev-perl/XML-Parser
nls? ( sys-devel/gettext )"
src_prepare() {
touch db/options.xml.h ABOUT-NLS config.rpath || die
eapply_user
eautoreconf
}
src_configure() {
econf $(use_enable nls)
}