blob: 5291eb69fb7f8a64bd609454f03f1b1f44abcb3f (
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
43
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Jerry A! <jerry@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-admin/metalog/metalog-0.6-r9.ebuild,v 1.3 2002/05/27 17:27:34 drobbins Exp $
S=${WORKDIR}/${P}
DESCRIPTION="A highly configurable replacement for syslogd/klogd"
SRC_URI="mirror://sourceforge/metalog/${P}.tar.gz"
HOMEPAGE="http://metalog.sourceforge.net/"
DEPEND="virtual/glibc >=dev-libs/libpcre-3.4"
src_unpack() {
unpack ${A} ; cd ${S}
# adds a pidfile option. NiCE aeoo! :)
patch -p1 < ${FILESDIR}/metalog-0.6-gentoo.patch || die
cd ${S}/src
mv metalog.h metalog.h.orig
sed -e "s:/etc/metalog.conf:/etc/metalog/metalog.conf:g" \
metalog.h.orig > metalog.h
}
src_compile() {
./configure --prefix=/usr \
--mandir=/usr/share/man || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog README
newdoc metalog.conf metalog.conf.sample
insinto /etc/metalog ; doins ${FILESDIR}/metalog.conf
exeinto /etc/init.d ; newexe ${FILESDIR}/metalog.rc6 metalog
insinto /etc/conf.d ; newins ${FILESDIR}/metalog.confd metalog
exeinto /usr/sbin
doexe ${FILESDIR}/consolelog.sh
}
|