blob: 7204bc56b077c6d0601dcdd74f3fc6cf77b9723a (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="A log analyzer for postfix"
HOMEPAGE="http://www.mikecappella.com/logwatch/"
SRC_URI="${HOMEPAGE}/release/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="logwatch"
DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}"
src_compile() {
# The default make target just outputs instructions. We don't want
# the user to see these, so we avoid emake.
:
}
src_install() {
# There are two different "versions" of the package in the
# tarball: a standalone executable and a logwatch filter. The
# standalone is always installed. However, the logwatch filter is
# only installed with USE="logwatch".
dodoc Bugs Changes README ${PN}.conf-topn \
|| die "failed to install documentation"
doman ${PN}.1 || die "failed to install man page"
dohtml ${PN}.1.html || die "failed to install html documentation"
dobin ${PN} || die "failed to install executable"
insinto /etc
doins ${PN}.conf || die "failed to install config file"
if use logwatch; then
# Remove the taint mode (-T) switch from the header of the
# standalone executable, and save the result as our logwatch
# filter.
sed 's~^#!/usr/bin/perl -T$~#!/usr/bin/perl~' ${PN} > postfix \
|| die "failed to remove the perl taint switch"
insinto /etc/logwatch/scripts/services
doins postfix || die "failed to install the 'postfix' logwatch filter"
insinto /etc/logwatch/conf/services
newins ${PN}.conf postfix.conf \
|| die "failed to install the logwatch 'postfix.conf' file"
fi
}
|