diff options
author | Marcelo Góes <vanquirius@gentoo.org> | 2006-02-20 20:13:54 +0000 |
---|---|---|
committer | Marcelo Góes <vanquirius@gentoo.org> | 2006-02-20 20:13:54 +0000 |
commit | 33114fdfe1dcd5e8d5d3bbb3236209df4eea79ca (patch) | |
tree | 7a78587846a27a70b650bdd76d5163767b0382fd /app-admin/filewatcher/filewatcher-2.4.3.ebuild | |
parent | Fix by Diego Pettenò to make sure we use GNU m4 #123471. (diff) | |
download | historical-33114fdfe1dcd5e8d5d3bbb3236209df4eea79ca.tar.gz historical-33114fdfe1dcd5e8d5d3bbb3236209df4eea79ca.tar.bz2 historical-33114fdfe1dcd5e8d5d3bbb3236209df4eea79ca.zip |
2.4.3 version bump for bug 121596, thanks to Andrew D Kirch <trelane at trelane dot net>.
Package-Manager: portage-2.0.54 vanquish yourself edition
Diffstat (limited to 'app-admin/filewatcher/filewatcher-2.4.3.ebuild')
-rw-r--r-- | app-admin/filewatcher/filewatcher-2.4.3.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/app-admin/filewatcher/filewatcher-2.4.3.ebuild b/app-admin/filewatcher/filewatcher-2.4.3.ebuild new file mode 100644 index 000000000000..4e55b1e7c37f --- /dev/null +++ b/app-admin/filewatcher/filewatcher-2.4.3.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/filewatcher/filewatcher-2.4.3.ebuild,v 1.1 2006/02/20 20:13:54 vanquirius Exp $ + +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="~amd64 ~ppc ~x86" + +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" +} |