# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 S=${WORKDIR}/${P} DESCRIPTION="A realtime Apache log analyzer" HOMEPAGE="http://clueful.shagged.org/apachetop/" SRC_URI="http://clueful.shagged.org/apachetop/files/${P}.tar.gz" IUSE="apache2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86 ~sparc ~mips" DEPEND="!apache2? ( >=net-www/apache-1.3.28 ) apache2? ( >=net-www/apache-2.0.47 ) sys-apps/sed" src_compile() { local myconf= use apache2 \ && myconf="${myconf} --with-logfile=/etc/apache2/logs/access_log" \ || myconf="${myconf} --with-logfile=/etc/apache/logs/access_log" ./configure ${myconf} emake || die } src_install() { dobin src/apachetop || die dodoc README INSTALL TODO AUTHORS ChangeLog NEWS }