You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-apps/biosdevname/biosdevname-0.7.3.ebuild

28 lines
626 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools udev
DESCRIPTION="Sets BIOS-given device names instead of kernel eth* names"
HOMEPAGE="http://linux.dell.com/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"
DEPEND="${RDEPEND}
sys-apps/pciutils"
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
}