diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-08-26 16:54:44 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-08-26 16:55:04 +0200 |
commit | 32f68e478d040de3d6359da57ff30e46d22d8736 (patch) | |
tree | 24c383f0a8c6097a8f41cdf34c144d66b31a232e /net-misc | |
parent | sci-electronics/electric: drop 9.03 (diff) | |
download | gentoo-32f68e478d040de3d6359da57ff30e46d22d8736.tar.gz gentoo-32f68e478d040de3d6359da57ff30e46d22d8736.tar.bz2 gentoo-32f68e478d040de3d6359da57ff30e46d22d8736.zip |
net-misc/ipsvd: drop 1.0.0-r2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild b/net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild deleted file mode 100644 index 2b0e4522e88a..000000000000 --- a/net-misc/ipsvd/ipsvd-1.0.0-r2.ebuild +++ /dev/null @@ -1,50 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit toolchain-funcs flag-o-matic - -DESCRIPTION="ipsvd is a set of internet protocol service daemons for Unix" -HOMEPAGE="http://smarden.org/ipsvd/" -SRC_URI="http://smarden.org/ipsvd/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="static" - -DEPEND="" -RDEPEND="" - -S="${WORKDIR}/net/${P}" - -PATCHES=( - "${FILESDIR}"/${P}-fix-parallel-make.diff -) - -src_configure() { - cd "${S}"/src - if use static ; then - append-ldflags -static - fi - - echo "$(tc-getCC) ${CFLAGS}" > conf-cc - echo "$(tc-getCC) ${LDFLAGS}" > conf-ld -} - -src_compile() { - cd "${S}"/src - emake -} - -src_install() { - dobin src/{tcpsvd,udpsvd,ipsvd-cdb} - dodoc package/{CHANGES,README} - - doman man/ipsvd-instruct.5 man/ipsvd.7 man/udpsvd.8 \ - man/tcpsvd.8 man/ipsvd-cdb.8 - - insinto html - dohtml doc/*.html -} |