Files
gentoo/net-misc/linuxptp/linuxptp-1.8.ebuild
Thomas Beierlein e71ee81acf net-misc/linuxptp: Make kernel config advisory
Reported-by: Paul Steward <pstew@google.com>
Closes: https://bugs.gentoo.org/685278
Closes: https://github.com/gentoo/gentoo/pull/11566
Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
2019-05-20 07:18:07 +02:00

37 lines
722 B
Bash

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit linux-info
DESCRIPTION="The Linux Precision Time Protocol (PTP) implementation"
HOMEPAGE="http://linuxptp.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/v${PV}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND="${DEPEND}"
CONFIG_CHECK="~PPS ~NETWORK_PHY_TIMESTAMPING ~PTP_1588_CLOCK"
src_compile() {
export EXTRA_CFLAGS=${CFLAGS}
emake prefix=/usr mandir=/usr/share/man
}
src_install() {
emake \
prefix="${D}"/usr \
mandir="${D}"/usr/share/man \
infodir="${D}"/usr/share/info \
libdir="${D}"/usr/$(get_libdir) \
install
dodoc README.org
}