blob: 9574f94ee2db8a2856504ff212f8c5f9f8a2c598 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/analog/analog-6.0.ebuild,v 1.6 2005/12/21 00:14:28 vanquirius Exp $
inherit eutils
DESCRIPTION="A webserver log analyzer"
HOMEPAGE="http://www.analog.cx/"
SRC_URI="http://www.analog.cx/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE=""
DEPEND=">=dev-libs/libpcre-3.4
>=media-libs/gd-1.8.4-r2
sys-libs/zlib
media-libs/jpeg
media-libs/libpng"
pkg_setup() {
if ! built_with_use media-libs/gd jpeg ; then
eerror "libgd is missing jpeg support. Please add"
eerror "'jpeg' to your USE flags, and re-emerge media-libs/gd."
die "libgd needs jpeg support"
fi
if ! built_with_use media-libs/gd png ; then
eerror "libgd is missing jpeg support. Please add"
eerror "'png' to your USE flags, and re-emerge media-libs/gd."
die "libgd needs png support"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-5.1-gentoo.diff"
sed -i \
-e "s:^CFLAGS.*:CFLAGS = ${CFLAGS}:" \
-e 's:^DEFS.*:DEFS = -DHAVE_GD -DHAVE_PCRE -DHAVE_ZLIB:' \
-e "s:^LIBS.*:LIBS = -lgd -lz -lpcre -lm -lpng -ljpeg:" \
src/Makefile \
|| die "sed failed"
}
src_compile() {
make -C src || die "make failed"
}
src_install() {
dobin analog || die "dobin failed"
newman analog.man analog.1
dodoc README.txt Licence.txt analog.cfg
dohtml -a html,gif,css,ico docs/*
dohtml -r how-to
docinto examples ; dodoc examples/*
docinto cgi ; dodoc anlgform.pl
insinto /usr/share/analog/images ; doins images/*
insinto /usr/share/analog/lang ; doins lang/*
dodir /var/log/analog
dosym /usr/share/analog/images /var/log/analog/images
insinto /etc/analog ; doins "${FILESDIR}/analog.cfg"
}
|