You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-admin/multilog-watch/multilog-watch-1.12.ebuild

39 lines
965 B

# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
inherit eutils
DESCRIPTION="Watches a multilog file for irregularities"
HOMEPAGE="https://www.eyrie.org/~eagle/software/multilog-watch/"
SRC_URI="https://archives.eyrie.org/software/system/multilog-watch
https://www.eyrie.org/%7Eeagle/software/multilog-watch/sample.filter"
LICENSE="Artistic GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="dev-lang/perl
virtual/qmail"
src_unpack() {
mkdir "${S}"
cp "${DISTDIR}"/multilog-watch "${S}"
cp "${DISTDIR}"/sample.filter "${S}"
}
src_compile() {
mv multilog-watch multilog-watch.orig
sed -e 's/\/etc\/leland/\/etc\/multilog-watch/' multilog-watch.orig > multilog-watch
/usr/bin/pod2man -s 1 multilog-watch multilog-watch.1
}
src_install() {
dodir /etc/multilog-watch
insinto /etc/multilog-watch
doins sample.filter
dobin multilog-watch || die 'install failed'
doman multilog-watch.1
}