# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 S=${WORKDIR}/${P} DESCRIPTION="AWStats is a short for Advanced Web Statistics." SRC_URI="http://unc.dl.sourceforge.net/sourceforge/awstats/${P}.tgz" HOMEPAGE="http://awstats.sourceforge.net/" SLOT="0" LICENSE="GPL" KEYWORDS="x86 ppc sparc" RDEPEND=">=dev-lang/perl-5.6.1 >=media-libs/libpng-1.2" src_install() { sed -e '49c\LogFile="/var/log/apache/access_log"' \ -e '191c\DirData="/var/www/localhost/htdocs/awstats"' \ -e '199c\DirCgi="/var/www/localhost/cgi-bin"' \ ${S}/wwwroot/cgi-bin/awstats.model.conf > ${S}/wwwroot/cgi-bin/awstats.conf dodir /var/www/localhost/cgi-bin/awstats/ cp -r ${S}/wwwroot/cgi-bin/* ${D}/var/www/localhost/cgi-bin/awstats/ dodir /var/www/localhost/htdocs/awstats/ cp -r ${S}/wwwroot/{css,icon,js} ${D}/var/www/localhost/htdocs/awstats/ } pkg_postinst() { einfo "For configure instructions, please visit" einfo "http://awstats.sourceforge.net/docs/index.html" }