blob: 9b1d973c14cbca58b4cae7847875ea372fc6bf5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2005 Gentoo Foundation, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/filewatcher/filewatcher-2.4.0.ebuild,v 1.1 2005/04/28 18:54:55 beu Exp $
inherit eutils
DESCRIPTION="This is a configuration file control system and IDS"
HOMEPAGE="http://www.willingminds.com/resources/filewatcher.html"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
DEPEND="dev-perl/MailTools
app-text/rcs
virtual/mta"
DOCS="COPYING Changes README"
src_install() {
keepdir /var/lib/filewatcher /var/lib/filewatcher/archive
dosbin filewatcher || die "could not install filewatcher"
doman filewatcher.1 || die "could not install filewatcher manpage"
insinto /etc
doins ${FILESDIR}/filewatcher.conf || \
die "could not install basic filewatcher config"
}
pkg_postinst() {
einfo " A basic configuration has been provided in "
einfo " /etc/filewatcher.conf. It is strongly "
einfo " recommended that you invoke filewatcher via "
einfo " crontab. "
echo
einfo " 55,25,40 * * * * root /usr/sbin/filewatcher "
einfo " --config=/etc/filewatcher.conf "
}
|