summaryrefslogtreecommitdiff
blob: 2d4e7d82b4756a9d38d80475917f4a7b6e28243b (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
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author: Donny Davies <woodchip@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-misc/fakeidentd/fakeidentd-1.4.ebuild,v 1.2 2001/08/29 01:21:40 woodchip Exp $

# This identd is nearly perfect for a NAT box. It runs in one
# process (doesn't fork()) and isnt very susceptible to DOS attack.

DESCRIPTION="A static, secure identd. One source file only!"
HOMEPAGE="http://www.ajk.tele.fi/~too/sw"
S=${WORKDIR}/${P}
SRC_URI="http://www.ajk.tele.fi/~too/sw/releases/identd.c
         http://www.ajk.tele.fi/~too/sw/identd.readme"

DEPEND="virtual/glibc"

src_unpack() {
	mkdir ${P}
	cp ${DISTDIR}/identd.c ${DISTDIR}/identd.readme ${P}
}

src_compile() {
	cd ${S}
	gcc identd.c -o ${PN} ${CFLAGS} || die
}

src_install () {
	dosbin ${PN}
	dodoc identd.readme
	# Changelog in source is more current. Its only ~13kB anyway.
	dodoc identd.c
}