blob: c1266dd05183eab3bf60663910e880022da40b48 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/oidentd/oidentd-2.0.6.ebuild,v 1.3 2003/09/05 22:01:49 msterret 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/glibc"
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}
}
|