blob: b043133731b8efce9333927aed7545aa8bb86e93 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/slidentd/slidentd-0.0.15.ebuild,v 1.10 2004/05/13 03:21:19 dragonheart Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A secure, lightweight ident daemon."
SRC_URI="http://www.uncarved.com/slidentd/${P}.tar.gz"
HOMEPAGE="http://www.uncarved.com/slidentd/"
KEYWORDS="x86 sparc "
LICENSE="GPL-2"
SLOT="0"
DEPEND="dev-libs/dietlibc
dev-libs/libowfat"
RDEPEND="sys-apps/daemontools
sys-apps/ucspi-tcp"
src_unpack() {
unpack ${A} ; cd ${S}
mv Makefile Makefile.orig
sed -e "s:^\tCFLAGS=\$(diet_cflag.*:\tCFLAGS=${CFLAGS} \${diet_cflags}:" \
-e "s:^\tCC\:=diet -Os \$(CC):\tCC\:=diet -Os gcc:" \
Makefile.orig > Makefile
}
src_compile() {
make build_mode=diet INCLUDES=-I/usr/include/libowfat LIBDIRS=-L/usr/lib || die
}
src_install () {
make DESTDIR=${D} install || die
exeinto /var/lib/supervise/slidentd
newexe ${FILESDIR}/slidentd-run run
}
pkg_postinst() {
echo -e "\e[32;01m You need to start your supervise service:\033[0m"
echo ' # ln -s /var/lib/supervise/slidentd/ /service'
echo
}
|