summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-01-01 09:31:26 +0000
committerSam James <sam@gentoo.org>2022-01-01 09:38:23 +0000
commit16f470a1da61ee1515eb68c19ef5a9466e6e1776 (patch)
tree28cf0e7bf47f92b5e0067a16084d85270eea8798 /sys-apps/edac-utils
parentnet-misc/socat: drop 1.7.3.4, 1.7.4.1 (diff)
downloadgentoo-16f470a1da61ee1515eb68c19ef5a9466e6e1776.tar.gz
gentoo-16f470a1da61ee1515eb68c19ef5a9466e6e1776.tar.bz2
gentoo-16f470a1da61ee1515eb68c19ef5a9466e6e1776.zip
sys-apps/edac-utils: drop 0.18
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-apps/edac-utils')
-rw-r--r--sys-apps/edac-utils/edac-utils-0.18.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/sys-apps/edac-utils/edac-utils-0.18.ebuild b/sys-apps/edac-utils/edac-utils-0.18.ebuild
deleted file mode 100644
index c4aa0a9e04cf..000000000000
--- a/sys-apps/edac-utils/edac-utils-0.18.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-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"
-
-src_prepare() {
- default
-
- sed -i \
- -e 's|-Werror||' \
- configure || die
-}
-
-src_configure() {
- econf \
- --disable-static \
- $(use_enable debug)
-}
-
-src_install() {
- default
-
- # We don't need this init.d file
- # Modules should be loaded by adding them to /etc/conf.d/modules
- # The rest is done via the udev-rule
- rm -rf "${ED}/etc/init.d" || die
-
- 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"
-}