blob: 082299c24da83a0cab0438cabda23351b5e2eff3 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/rsyslog/rsyslog-3.18.1.ebuild,v 1.1 2008/07/31 08:43:17 dev-zero Exp $
inherit eutils versionator
DESCRIPTION="An enhanced multi-threaded syslogd with database support and more."
HOMEPAGE="http://www.rsyslog.com/"
SRC_URI="http://download.rsyslog.com/${PN}/${P}.tar.gz"
LICENSE="GPL-3 LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug kerberos dbi mysql postgres relp snmp zlib"
DEPEND="kerberos? ( virtual/krb5 )
dbi? ( dev-db/libdbi )
mysql? ( virtual/mysql )
postgres? ( virtual/postgresql-base )
relp? ( dev-libs/librelp )
snmp? ( net-analyzer/net-snmp )
zlib? ( sys-libs/zlib )"
RDEPEND="${DEPEND}"
PROVIDE="virtual/logger"
BRANCH="3-stable"
src_compile() {
# Maintainer notes:
# * rsyslog-3 doesn't support single threading anymore
# * rfc3195 needs a library and development of that library
# is suspended
econf \
--enable-largefile \
--enable-regexp \
$(use_enable zlib) \
$(use_enable kerberos gssapi-krb5) \
--enable-pthreads \
--enable-klog \
--enable-unix \
--enable-inet \
--enable-fsstnd \
$(use_enable debug) \
$(use_enable debug rtinst) \
$(use_enable debug valgrind) \
$(use_enable mysql) \
$(use_enable postgres pgsql) \
$(use_enable dbi libdbi) \
$(use_enable snmp) \
--enable-rsyslogd \
--enable-mail \
$(use_enable relp) \
--disable-rfc3195 \
--enable-imfile \
--disable-imtemplate
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
insinto /usr/share/doc/${PF}/scripts/mysql
doins plugins/ommysql/{createDB.sql,contrib/delete_mysql}
insinto /usr/share/doc/${PF}/scripts/pgsql
doins plugins/ompgsql/createDB.sql
elog "SQL scripts to create the tables for MySQL or PostgreSQL have been installed to:"
elog " /usr/share/doc/${PF}/scripts"
dodoc AUTHORS ChangeLog doc/rsyslog-example.conf
dohtml doc/*
insinto /etc
newins "${FILESDIR}/${BRANCH}/rsyslog-gentoo.conf" rsyslog.conf
insinto /etc/logrotate.d/
newins "${FILESDIR}/${BRANCH}/rsyslog.logrotate" rsyslog
newconfd "${FILESDIR}/${BRANCH}/rsyslog.conf" rsyslog
newinitd "${FILESDIR}/${BRANCH}/rsyslog.init" rsyslog
}
|