blob: 019d4c6ef3c110f65fbf541606163c0d3e99a85b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/gluelog/gluelog-1.0-r2.ebuild,v 1.15 2004/06/30 02:35:50 vapier Exp $
DESCRIPTION="Pipe and socket fittings for the system and kernel logs"
HOMEPAGE="http://www.linuxuser.co.za/projects.php3"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc sparc amd64"
IUSE=""
DEPEND="virtual/libc"
S=${WORKDIR}
src_unpack() {
cp ${FILESDIR}/{gluelog,glueklog}.c . || die
}
src_compile() {
emake gluelog glueklog || die
}
src_install() {
dosbin gluelog glueklog || die
exeopts -m0750 -g wheel
dodir /var/log
local x
for x in syslog klog
do
exeinto /var/lib/supervise/services/${x}
newexe ${FILESDIR}/${x}-run run
install -d -m0750 -o daemon -g wheel ${D}/var/log/${x}.d
exeinto /etc/rc.d/init.d
doexe ${FILESDIR}/svc-${x}
done
dodoc ${FILESDIR}/README
}
|