blob: 150711993a5048f3f6ff8d2260a304b8e865259a (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/sarg/sarg-2.2.5.ebuild,v 1.1 2008/03/08 19:51:30 pva Exp $
inherit eutils
DESCRIPTION="Squid Analysis Report Generator"
HOMEPAGE="http://sarg.sourceforge.net/sarg.php"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
mirror://gentoo/sarg-2.2.3.1-lots-of-compiler-warnings.patch.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
IUSE=""
DEPEND="media-libs/gd"
pkg_setup() {
built_with_use -a media-libs/gd png || die \
"Please recompile media-libs/gd with USE=\"png\""
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${WORKDIR}"/${PN}-2.2.3.1-lots-of-compiler-warnings.patch
epatch "${FILESDIR}"/${PN}-2.2.3.1-rewind.patch
# Fixes bug #43132
sed -i \
-e 's:"/usr/local/squid/var/logs/access.log":"/var/log/squid/access.log":' \
-e 's:"/var/www/html/squid-reports":"/var/www/localhost/htdocs/squid-reports":' \
log.c || die "setting default for gentoo directories... failed"
sed -i \
-e 's:/usr/local/squid/var/logs/access.log:/var/log/squid/access.log:' \
-e 's:/var/www/html/squid-reports:/var/www/localhost/htdocs/squid-reports:' \
sarg.conf || die "setting default for gentoo directories... failed"
# Fixes bug #64743
sed -i -e 's:sarg_tmp:sarg:' email.c || die "fixing dir in email.c failed"
sed -i \
-e 's:/usr/local/sarg/sarg.conf:/etc/sarg/sarg.conf:' \
-e 's:/usr/local/squid/logs/access.log:/var/log/squid/access.log:' \
sarg.1 || die "Failed to fix man page."
}
src_compile() {
econf \
--enable-bindir=/usr/bin \
--enable-mandir=/usr/share/man/man1 \
--enable-sysconfdir=/etc/sarg/ || die "econf failed"
emake || die "emake failed"
}
src_install() {
# This is workaround for sarg installation script, which does not create dirs
dodir /etc/sarg /usr/sbin
make \
BINDIR="${D}"/usr/sbin \
MANDIR="${D}"/usr/share/man/man1 \
SYSCONFDIR="${D}"/etc/sarg \
HTMLDIR="${D}"/var/www/html \
install || die "sarg installation failed"
dodoc BETA-TESTERS CONTRIBUTORS DONATIONS README ChangeLog htaccess
}
|