gentoo-ebuilds/sys-apps/biosdevname/biosdevname-0.7.3-r1.ebuild
Arthur Zamarin 74fac55cb3
sys-apps/biosdevname: Stabilize 0.7.3-r1 amd64, #944648
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
2024-11-23 20:14:57 +00:00

40 lines
734 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools udev
DESCRIPTION="Sets BIOS-given device names instead of kernel eth* names"
HOMEPAGE="
https://linux.dell.com/biosdevname/
https://github.com/dell/biosdevname
"
SRC_URI="https://github.com/dell/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND="
virtual/udev
sys-apps/pciutils
"
DEPEND="${RDEPEND}"
src_prepare() {
default
sed -i -e 's|/sbin/biosdevname|/usr\0|g' biosdevname.rules.in || die
sed -i -e "/RULEDEST/s:/lib/udev:$(get_udevdir):" configure.ac || die
eautoreconf
}
pkg_postinst() {
udev_reload
}
pkg_postrm() {
udev_reload
}