summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-12-28 03:35:22 +0000
committerSam James <sam@gentoo.org>2023-12-28 03:35:22 +0000
commitb74ca1089ea4b5814c52ba7aa18f3aa302de2737 (patch)
treeeea44c6a02e461d1eef425d5e1dddffb6ec3450a
parentnet-misc/socat: drop 1.7.4.3, 1.7.4.4 (diff)
downloadgentoo-b74ca1089ea4b5814c52ba7aa18f3aa302de2737.tar.gz
gentoo-b74ca1089ea4b5814c52ba7aa18f3aa302de2737.tar.bz2
gentoo-b74ca1089ea4b5814c52ba7aa18f3aa302de2737.zip
sys-apps/edac-utils: drop 0.18-r1
Signed-off-by: Sam James <sam@gentoo.org>
-rw-r--r--sys-apps/edac-utils/edac-utils-0.18-r1.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild b/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild
deleted file mode 100644
index b1b73a2138c8..000000000000
--- a/sys-apps/edac-utils/edac-utils-0.18-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools systemd
-
-DESCRIPTION="Userspace helper for Linux kernel EDAC drivers"
-HOMEPAGE="https://github.com/grondo/edac-utils"
-SRC_URI="https://github.com/grondo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64"
-IUSE="debug"
-
-DEPEND="sys-fs/sysfsutils"
-RDEPEND="${DEPEND}
- sys-apps/dmidecode"
-
-PATCHES=(
- "${FILESDIR}"/${P}-mitac-hawk.patch
-)
-
-src_prepare() {
- default
-
- # Needed to refresh libtool and friends to not call CC directly
- # bug #725540
- eautoreconf
-}
-
-src_configure() {
- econf \
- --disable-static \
- $(use_enable debug)
-}
-
-src_install() {
- default
-
- # Dump the inappropriate-for-us bundled init script
- rm -rf "${ED}/etc/init.d" || die
-
- # Install our own
- newinitd "${FILESDIR}"/edac.init edac
- systemd_dounit "${FILESDIR}"/edac.service
-
- find "${ED}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
- elog "There must be an entry for your mainboard in ${EROOT}/etc/edac/labels.db"
- elog "in case you want nice labels in /sys/module/*_edac/"
- elog "Run the following command to check whether such an entry is already available:"
- elog " edac-ctl --print-labels"
-}