diff options
author | Sam James <sam@gentoo.org> | 2022-12-29 17:26:21 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-29 17:26:30 +0000 |
commit | f887800c7a940282004c8f6bb4b2a53dfe7df6ca (patch) | |
tree | f0dca6b215c5c09ebab56298644ad7319582bf65 /app-admin | |
parent | app-admin/rasdaemon: update maintainers (diff) | |
download | gentoo-f887800c7a940282004c8f6bb4b2a53dfe7df6ca.tar.gz gentoo-f887800c7a940282004c8f6bb4b2a53dfe7df6ca.tar.bz2 gentoo-f887800c7a940282004c8f6bb4b2a53dfe7df6ca.zip |
app-admin/rasdaemon: drop 0.6.7
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/rasdaemon/rasdaemon-0.6.7.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild b/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild deleted file mode 100644 index 12a8438bc2ba..000000000000 --- a/app-admin/rasdaemon/rasdaemon-0.6.7.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit linux-info systemd - -DESCRIPTION="Reliability, Availability and Serviceability logging tool" -HOMEPAGE="http://www.infradead.org/~mchehab/rasdaemon/" -SRC_URI="http://www.infradead.org/~mchehab/${PN}/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="sqlite" - -DEPEND="" -RDEPEND=" - ${DEPEND} - sys-devel/gettext - sys-apps/dmidecode - sqlite? ( - dev-db/sqlite - dev-perl/DBD-SQLite - ) -" - -PATCHES=( - "${FILESDIR}/sysconfig-fix-0.6.7.patch" -) - -pkg_setup() { - linux-info_pkg_setup - local CONFIG_CHECK="~ACPI_EXTLOG" - check_extra_config -} - -src_configure() { - local myconf=( - $(use_enable sqlite sqlite3) - --enable-abrt-report - --enable-aer - --enable-arm - --enable-extlog - --enable-hisi-ns-decode - --enable-mce - --enable-non-standard - --enable-devlink - --enable-diskerror - --enable-memory-ce-pfa - --includedir="/usr/include/${PN}" - --localstatedir=/var - ) - - econf "${myconf[@]}" -} - -src_install() { - default - - keepdir "/var/lib/${PN}" - - systemd_dounit misc/*.service - - newinitd "${FILESDIR}/rasdaemon.openrc-r2" rasdaemon - newinitd "${FILESDIR}/ras-mc-ctl.openrc-r1" ras-mc-ctl - newconfd "${FILESDIR}"/rasdaemon.confd rasdaemon -} |