# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="A log monitor similar to logsentry." HOMEPAGE="http://logcheck.alioth.debian.org/" SRC_ID="1097" SRC_URI="http://alioth.debian.org/download.php/${SRC_ID}/${PN}_${PV}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64" IUSE="" DEPEND="dev-lang/perl app-misc/lockfile-progs !app-admin/logsentry" # When default src_compile calls emake with no target, default one is assumed. # In this case it's install. This causes a problem, because DESTDIR isn't passed # and make fails with access violation. The function below is to prevent that. src_compile() { return; } src_install() { make DESTDIR="${D}" install || die "install failed" dodoc AUTHORS CHANGES CREDITS TODO dodoc docs/README.* doman docs/logtail.8 }