Gentoo Archives: gentoo-commits

From: Thomas Beierlein <tomjbe@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/linuxptp/
Date: Sun, 20 Jan 2019 14:56:59
Message-Id: 1547996194.2de4d875784bc866aab28650c0e1fb848d8d9591.tomjbe@gentoo
1 commit: 2de4d875784bc866aab28650c0e1fb848d8d9591
2 Author: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 20 14:56:34 2019 +0000
4 Commit: Thomas Beierlein <tomjbe <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 20 14:56:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2de4d875
7
8 net-misc/linuxptp: Version bump
9
10 Package-Manager: Portage-2.3.56, Repoman-2.3.12
11 Signed-off-by: Thomas Beierlein <tomjbe <AT> gentoo.org>
12
13 net-misc/linuxptp/Manifest | 1 +
14 net-misc/linuxptp/linuxptp-2.0.ebuild | 36 +++++++++++++++++++++++++++++++++++
15 2 files changed, 37 insertions(+)
16
17 diff --git a/net-misc/linuxptp/Manifest b/net-misc/linuxptp/Manifest
18 index 5e3edb0535c..fe7f8d28d70 100644
19 --- a/net-misc/linuxptp/Manifest
20 +++ b/net-misc/linuxptp/Manifest
21 @@ -1 +1,2 @@
22 DIST linuxptp-1.8.tgz 147764 BLAKE2B f0dec589cf4f27c03f901262980f1c471382eefdd00772da0065077bab29ed7c1350d70b1ec4b0c912dd82304220b9c550320b82cf269d99478d40c5a7ed8541 SHA512 8ac52428b7addf1c43769083e660ca0ceb2813994107b8b9c59338e480f1d2e45666ebcc3f59f7b8cf9a02301b55aa54b26cbbbf81622a525a704f2d08fd383e
23 +DIST linuxptp-2.0.tgz 184942 BLAKE2B 79ef9d3c379769a71e652a77f05ab661db444a76a339e72106055cf900de9cabfe303c48760f11701fefe5e641d07b73fc5a250078bedf7faa3ae995ace24da3 SHA512 c33487a803f8cc461f790d9a137d5cf8b35cb6d292bdd2cf7a16aa666359d8c5e24667473be843182bef1e9f8d5c6af8aab8918978f10bf08257dd408bba66d6
24
25 diff --git a/net-misc/linuxptp/linuxptp-2.0.ebuild b/net-misc/linuxptp/linuxptp-2.0.ebuild
26 new file mode 100644
27 index 00000000000..c0b5ed6233b
28 --- /dev/null
29 +++ b/net-misc/linuxptp/linuxptp-2.0.ebuild
30 @@ -0,0 +1,36 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit linux-info
37 +
38 +DESCRIPTION="The Linux Precision Time Protocol (PTP) implementation"
39 +HOMEPAGE="http://linuxptp.sourceforge.net/"
40 +SRC_URI="mirror://sourceforge/${PN}/v${PV}/${P}.tgz"
41 +
42 +LICENSE="GPL-2"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +IUSE=""
46 +
47 +DEPEND=""
48 +RDEPEND="${DEPEND}"
49 +
50 +CONFIG_CHECK="PPS NETWORK_PHY_TIMESTAMPING PTP_1588_CLOCK"
51 +
52 +src_compile() {
53 + export EXTRA_CFLAGS=${CFLAGS}
54 + emake prefix=/usr mandir=/usr/share/man
55 +}
56 +
57 +src_install() {
58 + emake \
59 + prefix="${D}"/usr \
60 + mandir="${D}"/usr/share/man \
61 + infodir="${D}"/usr/share/info \
62 + libdir="${D}"/usr/$(get_libdir) \
63 + install
64 +
65 + dodoc README.org
66 +}