mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 17:09:10 -07:00
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>
37 lines
722 B
Bash
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
|
|
}
|