# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils IUSE="" DESCRIPTION="mod_log_sql to apache common log format tool" SRC_URI="mirror://sourceforge/mls2clf/${P}.tgz" HOMEPAGE="http://sourceforge.net/projects/mls2clf" SLOT="0" LICENSE="GPL-2" KEYWORDS="" DEPEND="dev-db/mysql" src_compile() { emake || die } src_install() { dobin mls2clf insinto /etc doins mls2clf.conf fperms 0440 /etc/mls2clf.conf einfo "It is recommended to add an index to your database log table" einfo "in order to speed up extraction." einfo "" einfo " alter table access_log add index(time_stamp);" einfo " alter table access_log add index(virtual_host);" einfo "" einfo "This can take a very long time to do depending on the size of" einfo "your database but the longer it takes the more benefit you're" einfo "going to see from it." }