blob: 31f3c3f6023e89b584eb094e8258d33d909573dd (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-misc/awstats/awstats-6.95.ebuild,v 1.6 2011/01/30 18:55:32 armin76 Exp $
inherit eutils webapp versionator depend.apache
DESCRIPTION="AWStats is short for Advanced Web Statistics."
HOMEPAGE="http://awstats.sourceforge.net/"
SRC_URI="http://awstats.sourceforge.net/files/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~alpha amd64 hppa ppc ~sparc x86 ~x86-fbsd"
IUSE="geoip ipv6"
SLOT="0"
WEBAPP_MANUAL_SLOT="yes"
RDEPEND=">=dev-lang/perl-5.6.1
>=media-libs/libpng-1.2
virtual/perl-Time-Local
dev-perl/URI
geoip? ( dev-perl/Geo-IP )
ipv6? ( dev-perl/Net-IP dev-perl/Net-DNS )"
want_apache
pkg_setup() {
depend.apache_pkg_setup
webapp_pkg_setup
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PN}-6.3-gentoo.diff
# change default installation directory
for file in tools/* wwwroot/cgi-bin/*; do
if [[ -f "${file}" ]]; then
sed \
-e "s#/usr/local/awstats/wwwroot/cgi-bin#${MY_CGIBINDIR}#g" \
-e "s#/usr/local/awstats/wwwroot/icon#${MY_HTDOCSDIR}/icon#g" \
-e "s#/usr/local/awstats/wwwroot/plugins#${MY_HOSTROOTDIR}/plugins#g" \
-e "s#/usr/local/awstats/wwwroot/classes#${MY_HTDOCSDIR}/classes#g" \
-e "s#/usr/local/awstats/wwwroot#${MY_HTDOCSDIR}#g" \
-i "${file}" || die "sed ${file} failed"
fi
done
# set the logpath
if use apache2; then
logpath="apache2/access_log"
else
logpath="awstats_log"
fi
# set default values for directories
sed \
-e "s|^\(LogFile=\).*$|\1\"/var/log/${logpath}\"|" \
-e "s|^\(SiteDomain=\).*$|\1\"localhost\"|" \
-e "s|^\(DirIcons=\).*$|\1\"/awstats/icon\"|" \
-e "s|^\(DirCgi=\).*$|\1\"/cgi-bin\"|" \
-i "${S}"/wwwroot/cgi-bin/awstats.model.conf || die "sed failed"
# enable ipv6 plugin
if use ipv6; then
sed -e "s|^#\(LoadPlugin=\"ipv6\"\)$|\1|" \
-i "${S}"/wwwroot/cgi-bin/awstats.model.conf || die "sed failed"
fi
}
src_install() {
webapp_src_preinst
dohtml -r docs/*.html docs/*.xml docs/*.css docs/images
dodoc README.TXT docs/COPYING.TXT docs/LICENSE.TXT
newdoc wwwroot/cgi-bin/plugins/example/example.pm example_plugin.pm
docinto xslt
dodoc tools/xslt/*
webapp_postinst_txt en "${FILESDIR}"/postinst-en-r1.txt
keepdir /var/lib/awstats
# Copy the app's main files
exeinto "${MY_CGIBINDIR}"
doexe "${S}"/wwwroot/cgi-bin/*.pl
exeinto "${MY_HTDOCSDIR}"/classes
doexe "${S}"/wwwroot/classes/*.jar
# install language files, libraries and plugins
dodir "${MY_CGIBINDIR}"
for dir in lang lib plugins; do
insinto "${MY_CGIBINDIR}"
doins -r "${S}"/wwwroot/cgi-bin/${dir}
done
# install the app's www files
dodir "${MY_HTDOCSDIR}"
for dir in icon css js; do
insinto "${MY_HTDOCSDIR}"
doins -r "${S}"/wwwroot/${dir}
done
dodir /usr/share/awstats
dosym "${MY_HTDOCSDIR}" /usr/share/awstats/htdocs
for dir in lang lib plugins; do
dosym "${MY_CGIBINDIR}"/"${dir}" /usr/share/awstats/"${dir}"
done
# copy configuration file
insinto /etc/awstats
doins "${S}"/wwwroot/cgi-bin/awstats.model.conf
# create the data directory for awstats
dodir "${MY_HOSTROOTDIR}"/datadir
# install command line tools
cd "${S}"/tools
dobin awstats_buildstaticpages.pl awstats_exportlib.pl \
awstats_updateall.pl logresolvemerge.pl \
maillogconvert.pl awstats_configure.pl
newbin urlaliasbuilder.pl awstats_urlaliasbuilder.pl
dosym "${MY_CGIBINDIR}"/awstats.pl /usr/bin/awstats.pl
webapp_src_install
# fix perms
for dir in lang lib plugins; do
fperms 0755 "${MY_CGIBINDIR}"/"${dir}"
done
for dir in icon css js; do
fperms 0755 "${MY_HTDOCSDIR}"/"${dir}"
done
}
pkg_postinst() {
elog
elog "The AWStats-Manual is available either inside"
elog "the /usr/share/doc/${PF} - folder, or at"
elog "http://awstats.sourceforge.net/docs/index.html ."
elog
ewarn "Copy the /etc/awstats/awstats.model.conf to"
ewarn "/etc/awstats/awstats.<yourdomain>.conf and edit it."
if use geoip ; then
einfo
einfo "Add the following line to /etc/awstats/awstats.<yourdomain>.conf"
einfo "to enable GeoIP plugin:"
einfo "LoadPlugin=\"geoip GEOIP_STANDARD /usr/share/GeoIP/GeoIP.dat\" "
einfo
fi
webapp_pkg_postinst
}
|