---- Makefile.orig 2011-01-21 00:43:02.000000000 +0100
-+++ Makefile 2011-01-21 00:47:27.000000000 +0100
+--- a/src/Makefile 2011-01-21 00:43:02.000000000 +0100
++++ b/src/Makefile 2011-01-21 00:47:27.000000000 +0100
@@ -61,7 +61,7 @@
check-ipsvd-cdb: load check-ipsvd-cdb.o uint32_unpack.o unix.a byte.a
./load check-ipsvd-cdb uint32_unpack.o unix.a byte.a
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=3
+EAPI=6
-inherit toolchain-funcs flag-o-matic eutils
+inherit toolchain-funcs flag-o-matic
DESCRIPTION="ipsvd is a set of internet protocol service daemons for Unix"
HOMEPAGE="http://smarden.org/ipsvd/"
S="${WORKDIR}/net/${P}"
-src_prepare() {
- cd "${S}"/src
- epatch "${FILESDIR}"/${P}-fix-parallel-make.diff
-}
+PATCHES=(
+ "${FILESDIR}"/${P}-fix-parallel-make.diff
+)
src_configure() {
cd "${S}"/src
src_compile() {
cd "${S}"/src
- emake || die "make failed"
+ emake
}
src_install() {
- dobin src/{tcpsvd,udpsvd,ipsvd-cdb} || die "dobin"
+ dobin src/{tcpsvd,udpsvd,ipsvd-cdb}
dodoc package/{CHANGES,README}
- dohtml doc/*.html
doman man/ipsvd-instruct.5 man/ipsvd.7 man/udpsvd.8 \
man/tcpsvd.8 man/ipsvd-cdb.8
+
+ insinto html
+ dohtml doc/*.html
}