Gentoo Archives: gentoo-commits

From: "Andreas Hüttel" <dilfridge@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/ipsvd/files/, net-misc/ipsvd/
Date: Mon, 01 Jan 2018 16:57:31
Message-Id: 1514825831.c87ca5eddea55a56a618e37ac0014f582f9a65b2.dilfridge@gentoo
1 commit: c87ca5eddea55a56a618e37ac0014f582f9a65b2
2 Author: Andreas K. Hüttel <dilfridge <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 1 16:57:11 2018 +0000
4 Commit: Andreas Hüttel <dilfridge <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 1 16:57:11 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c87ca5ed
7
8 net-misc/ipsvd: EAPI bump, bug 605728
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 .../ipsvd/files/ipsvd-1.0.0-fix-parallel-make.diff | 4 ++--
13 ...{ipsvd-1.0.0-r1.ebuild => ipsvd-1.0.0-r2.ebuild} | 21 +++++++++++----------
14 2 files changed, 13 insertions(+), 12 deletions(-)
15
16 diff --git a/net-misc/ipsvd/files/ipsvd-1.0.0-fix-parallel-make.diff b/net-misc/ipsvd/files/ipsvd-1.0.0-fix-parallel-make.diff
17 index 0b29a8e8cbb..2f770e27061 100644
18 --- a/net-misc/ipsvd/files/ipsvd-1.0.0-fix-parallel-make.diff
19 +++ b/net-misc/ipsvd/files/ipsvd-1.0.0-fix-parallel-make.diff
20 @@ -1,5 +1,5 @@
21 ---- Makefile.orig 2011-01-21 00:43:02.000000000 +0100
22 -+++ Makefile 2011-01-21 00:47:27.000000000 +0100
23 +--- a/src/Makefile 2011-01-21 00:43:02.000000000 +0100
24 ++++ b/src/Makefile 2011-01-21 00:47:27.000000000 +0100
25 @@ -61,7 +61,7 @@
26 check-ipsvd-cdb: load check-ipsvd-cdb.o uint32_unpack.o unix.a byte.a
27 ./load check-ipsvd-cdb uint32_unpack.o unix.a byte.a
28
29 diff --git a/net-misc/ipsvd/ipsvd-1.0.0-r1.ebuild b/net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild
30 similarity index 73%
31 rename from net-misc/ipsvd/ipsvd-1.0.0-r1.ebuild
32 rename to net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild
33 index 4540eca6c7d..2b0e4522e88 100644
34 --- a/net-misc/ipsvd/ipsvd-1.0.0-r1.ebuild
35 +++ b/net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild
36 @@ -1,9 +1,9 @@
37 -# Copyright 1999-2014 Gentoo Foundation
38 +# Copyright 1999-2018 Gentoo Foundation
39 # Distributed under the terms of the GNU General Public License v2
40
41 -EAPI=3
42 +EAPI=6
43
44 -inherit toolchain-funcs flag-o-matic eutils
45 +inherit toolchain-funcs flag-o-matic
46
47 DESCRIPTION="ipsvd is a set of internet protocol service daemons for Unix"
48 HOMEPAGE="http://smarden.org/ipsvd/"
49 @@ -19,10 +19,9 @@ RDEPEND=""
50
51 S="${WORKDIR}/net/${P}"
52
53 -src_prepare() {
54 - cd "${S}"/src
55 - epatch "${FILESDIR}"/${P}-fix-parallel-make.diff
56 -}
57 +PATCHES=(
58 + "${FILESDIR}"/${P}-fix-parallel-make.diff
59 +)
60
61 src_configure() {
62 cd "${S}"/src
63 @@ -36,14 +35,16 @@ src_configure() {
64
65 src_compile() {
66 cd "${S}"/src
67 - emake || die "make failed"
68 + emake
69 }
70
71 src_install() {
72 - dobin src/{tcpsvd,udpsvd,ipsvd-cdb} || die "dobin"
73 + dobin src/{tcpsvd,udpsvd,ipsvd-cdb}
74 dodoc package/{CHANGES,README}
75
76 - dohtml doc/*.html
77 doman man/ipsvd-instruct.5 man/ipsvd.7 man/udpsvd.8 \
78 man/tcpsvd.8 man/ipsvd-cdb.8
79 +
80 + insinto html
81 + dohtml doc/*.html
82 }