blob: 10bca69fb1d5c67dff24ae3e996b6f2cc5f759f5 (
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
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=awstats
pkgver=6.95
pkgrel=0
pkgdesc="AWStats is short for Advanced Web Statistics."
url="http://awstats.sourceforge.net/"
arch="x86 x86_64"
license="GPL-2"
depends="perl perl-uri"
subpackages="$pkgname-doc"
source="http://awstats.sourceforge.net/files/$pkgname-$pkgver.tar.gz"
_builddir="$srcdir"/$pkgname-$pkgver
prepare() {
local file
cd "$_builddir"
for file in tools/* wwwroot/cgi-bin/*; do
[ -f "${file}" ] || continue
sed -e "s:/usr/local/awstats/wwwroot:/usr/lib/awstats:g" \
-i "$file"
done
}
build() {
return 0
}
package() {
cd "$_builddir"
# logpath="awstats_log"
# 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"
# if use ipv6; then
# sed -e "s|^#\(LoadPlugin=\"ipv6\"\)$|\1|" -i "${S}"/wwwroot/cgi-bin/awstats.model.conf || die "sed failed"
# fi
install -d "$pkgdir"/usr/share/doc/awstats \
"$pkgdir"/var/lib/awstats \
"$pkgdir"/usr/lib/awstats \
"$pkgdir"/usr/bin \
"$pkgdir"/etc/awstats
# docs
cp -a docs tools/xslt "$pkgdir"/usr/share/doc/awstats || return 1
# cgi-bin
cp -a wwwroot/* "$pkgdir"/usr/lib/awstats
mv "$pkgdir"/usr/lib/awstats/cgi-bin/awstats.model.conf \
"$pkgdir"/etc/awstats/
ln -s /etc/aswtats/awstats \
"$pkgdir"/usr/lib/awstats/cgi-bin/awstats.model.conf
# tools
cp tools/*.pl "$pkgdir"/usr/bin/ || return 1
ln -s /usr/lib/awstats/cgi-bin/awstats.pl "$pkgdir"/usr/bin/
}
md5sums="26a5b19fa9f395e9e7dafed37b795d7f awstats-6.95.tar.gz"
|