gentoo/net-misc/linuxptp/linuxptp-4.4-r1.ebuild
Thomas Beierlein 979cb27590
net-misc/linuxptp: Fix src_install()
Closes: https://bugs.gentoo.org/951471
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
2025-03-17 10:22:38 +01:00

53 lines
1.2 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit linux-info systemd toolchain-funcs
DESCRIPTION="The Linux Precision Time Protocol (PTP) implementation"
HOMEPAGE="https://linuxptp.nwtime.org/"
SRC_URI="https://downloads.nwtime.org/${PN}//${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
RDEPEND="dev-libs/nettle"
DEPEND="${RDEPEND} \
elibc_musl? ( sys-libs/queue-standalone )"
CONFIG_CHECK="~NETWORK_PHY_TIMESTAMPING ~PPS ~PTP_1588_CLOCK"
PATCHES=(
"${FILESDIR}"/${PN}-4.4-user_cpp.patch
)
pkg_setup() {
linux-info_pkg_setup
}
src_compile() {
# parse needed additional CFLAGS
export MY_FLAGS=$(CPP="$(tc-getCPP)" ./incdefs.sh)
export EXTRA_CFLAGS="${CFLAGS} ${MY_FLAGS}"
emake CC="$(tc-getCC)" 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
systemd_newunit "${FILESDIR}"/phc2sysAT.service phc2sys@.service
systemd_newunit "${FILESDIR}"/ptp4lAT.service ptp4l@.service
systemd_dounit "${FILESDIR}"/timemaster.service
dodoc README.org
dodoc -r configs
}