summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-misc/oidentd/oidentd-2.0.7.ebuild')
-rw-r--r--net-misc/oidentd/oidentd-2.0.7.ebuild42
1 files changed, 0 insertions, 42 deletions
diff --git a/net-misc/oidentd/oidentd-2.0.7.ebuild b/net-misc/oidentd/oidentd-2.0.7.ebuild
deleted file mode 100644
index 34734ad432ca..000000000000
--- a/net-misc/oidentd/oidentd-2.0.7.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/oidentd/oidentd-2.0.7.ebuild,v 1.5 2004/07/01 21:39:32 squinky86 Exp $
-
-IUSE="ipv6"
-
-DESCRIPTION="Another (RFC1413 compliant) ident daemon"
-HOMEPAGE="http://dev.ojnk.net/"
-SRC_URI="mirror://sourceforge/ojnk/${P}.tar.gz"
-KEYWORDS="x86 sparc ~alpha"
-LICENSE="GPL-2"
-SLOT="0"
-
-DEPEND="virtual/libc"
-
-src_compile() {
- local myconf=""
-
- use ipv6 && \
- myconf="${myconf} --enable-ipv6" || \
- myconf="${myconf} --disable-ipv6"
-
-
- ./configure \
- --prefix=/usr \
- --mandir=/usr/share/man \
- ${myconf} || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc AUTHORS ChangeLog README TODO NEWS \
- ${FILESDIR}/oidentd_masq.conf ${FILESDIR}/oidentd.conf
- exeinto /etc/init.d ; newexe ${FILESDIR}/oidentd-${PV}-init oidentd
- insinto /etc/conf.d ; newins ${FILESDIR}/oidentd-${PV}-confd oidentd
-}
-
-pkg_postinst() {
- einfo Example configuration files are in /usr/share/doc/${P}
-}
-