diff options
author | Jan Breuer <jan.breuer@mobatime.cz> | 2017-12-06 10:40:23 +0100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-12-06 22:46:20 +1100 |
commit | 61335110fb03aa12004394835782fb8956f0d65f (patch) | |
tree | cf6c3792c2ee4c50bf2cc3370a27e4e2ed50bdc9 /net-misc/ptpd | |
parent | cmake-utils.eclass: Use xdg_environment_reset from xdg-utils.eclass (diff) | |
download | gentoo-61335110fb03aa12004394835782fb8956f0d65f.tar.gz gentoo-61335110fb03aa12004394835782fb8956f0d65f.tar.bz2 gentoo-61335110fb03aa12004394835782fb8956f0d65f.zip |
net-misc/ptpd: remove broken package 2.3.1
Prevent further bug reports
Bug: https://bugs.gentoo.org/639990
Bug: https://bugs.gentoo.org/587328
Closes: https://github.com/gentoo/gentoo/pull/6465
Diffstat (limited to 'net-misc/ptpd')
-rw-r--r-- | net-misc/ptpd/ptpd-2.3.1.ebuild | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/net-misc/ptpd/ptpd-2.3.1.ebuild b/net-misc/ptpd/ptpd-2.3.1.ebuild deleted file mode 100644 index 3fcbbbc2a23e..000000000000 --- a/net-misc/ptpd/ptpd-2.3.1.ebuild +++ /dev/null @@ -1,57 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit autotools eutils flag-o-matic systemd - -DESCRIPTION="Precision Time Protocol daemon" -HOMEPAGE="https://github.com/ptpd/ptpd" - -SRC_URI="https://github.com/ptpd/ptpd/archive/${P}.tar.gz" -KEYWORDS="~amd64 ~arm ~x86" - -LICENSE="BSD" -SLOT="0" -IUSE="debug experimental ntp +pcap snmp slave-only +statistics" -RDEPEND=" - pcap? ( net-libs/libpcap ) - snmp? ( net-analyzer/net-snmp )" -DEPEND="${RDEPEND}" -RDEPEND="${RDEPEND} - ntp? ( net-misc/ntp )" - -S=${WORKDIR}/ptpd-${P} - -src_prepare() { - eautoreconf -} - -src_configure() { - append-flags -fno-strict-aliasing - econf \ - --enable-daemon \ - $(use_enable snmp) \ - $(use_enable experimental experimental-options) \ - $(use_enable statistics) \ - $(use_enable debug runtime-debug) \ - $(use_enable pcap) \ - $(use_enable slave-only) -} - -src_install() { - emake install DESTDIR="${D}" - - insinto /etc - newins "src/ptpd2.conf.minimal" ptpd2.conf - - newinitd "${FILESDIR}/ptpd2.rc" ptpd2 - newconfd "${FILESDIR}/ptpd2.confd" ptpd2 - - systemd_dounit "${FILESDIR}/ptpd2.service" -} - -pkg_postinst() { - elog "Do not forget to setup correct network interface." - elog "Change the config file /etc/ptpd2.conf to suit your needs." -} |