blob: 60a633ebe65accb60ae78999285473c145949bd4 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo toolchain-funcs
DESCRIPTION="A static, secure identd. One source file only!"
HOMEPAGE="http://www.guru-group.fi/~too/sw/"
SRC_URI="http://www.guru-group.fi/~too/sw/identd.readme -> ${P}.readme
http://www.guru-group.fi/~too/sw/releases/identd.c -> ${P}.c"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 sparc x86"
src_unpack() {
mkdir -p "${S}" || die
edo cp "${DISTDIR}"/${P}.{c,readme} "${S}"
}
src_compile() {
edo $(tc-getCC) ${CFLAGS} ${LDFLAGS} \
-DTRG=\"${PN}\" -DUSE_UNIX_OS -DVERSION=\"${PV}\" \
-o ${PN} ${P}.c
}
src_install() {
dosbin ${PN}
newdoc ${P}.readme identd.readme
newinitd "${FILESDIR}"/fakeidentd.rc fakeidentd
newconfd "${FILESDIR}"/fakeidentd.confd fakeidentd
}
|