blob: 64383f13dab317e7dc5d65379d991f567715f6eb (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/fakeidentd/fakeidentd-2.0.ebuild,v 1.1 2003/06/17 13:37:59 vapier Exp $
DESCRIPTION="A static, secure identd. One source file only!"
HOMEPAGE="http://www.guru-group.fi/~too/sw/"
SRC_URI="mirror://gentoo/${P}.tbz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc alpha"
DEPEND="virtual/glibc"
S=${WORKDIR}
src_compile() {
cp identd.c{,.old}
sed -e "s:identd.pid:${PN}.pid:" \
identd.c.old > identd.c
gcc identd.c -o ${PN} ${CFLAGS} || die
}
src_install() {
dosbin ${PN}
# Changelog in source is more current. Its only ~13kB anyway.
dodoc identd.readme identd.c
exeinto /etc/init.d ; newexe ${FILESDIR}/fakeidentd.rc fakeidentd
insinto /etc/conf.d ; newins ${FILESDIR}/fakeidentd.confd fakeidentd
}
|