mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-23 14:03:33 -04:00
(or call 'default' in tsrc_install) Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
40 lines
762 B
Bash
40 lines
762 B
Bash
# Copyright 2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools systemd
|
|
|
|
DESCRIPTION="CAN userspace utilities and tools"
|
|
HOMEPAGE="https://github.com/linux-can/"
|
|
SRC_URI="https://github.com/linux-can/can-utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="systemd"
|
|
|
|
DEPEND=""
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
# Default src_install + newconfd and newinitd
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" install
|
|
|
|
einstalldocs
|
|
|
|
if use systemd ; then
|
|
systemd_dounit "${FILESDIR}/slcan.service"
|
|
systemd_install_serviced "${FILESDIR}/slcan.service.conf"
|
|
else
|
|
newconfd "${FILESDIR}/slcand.confd" slcand
|
|
newinitd "${FILESDIR}/slcand.initd" slcand
|
|
fi
|
|
}
|