summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/ipsvd/ipsvd-1.0.0.ebuild')
-rw-r--r--net-misc/ipsvd/ipsvd-1.0.0.ebuild38
1 files changed, 0 insertions, 38 deletions
diff --git a/net-misc/ipsvd/ipsvd-1.0.0.ebuild b/net-misc/ipsvd/ipsvd-1.0.0.ebuild
deleted file mode 100644
index 7fae7f8cccd6..000000000000
--- a/net-misc/ipsvd/ipsvd-1.0.0.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/ipsvd/ipsvd-1.0.0.ebuild,v 1.3 2011/04/16 19:12:27 ulm Exp $
-
-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=""
-
-S="${WORKDIR}/net/${P}"
-
-src_compile() {
- cd "${S}"/src
- if use static ; then
- append-ldflags -static
- fi
-
- echo "$(tc-getCC) ${CFLAGS}" > conf-cc
- echo "$(tc-getCC) ${LDFLAGS}" > conf-ld
- emake || die "make failed"
-}
-
-src_install() {
- dobin src/{tcpsvd,udpsvd,ipsvd-cdb} || die "dobin"
- 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
-}