diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-07-20 03:54:44 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2005-07-20 03:54:44 +0000 |
commit | 406081a6ca10ad1ba6a6976c1ca67f7a2214f719 (patch) | |
tree | 86c1765476f12b8d1d0bf3a4da0b980743fff179 /sysutils/epylog/files/patch-etc_Makefile.in | |
parent | - allow 0 retries [1] (diff) |
[1]:
- s|/var/log/secure|/var/log/auth.log|
- move epylog.cron to configuration directory
Moreover:
- Preserve user-modified configuration files across updates
- Use GNU_CONFIGURE
- Depend on lynx and pass the lynx path to the configure script
[1]:
PR: ports/83136
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=139640
Diffstat (limited to 'sysutils/epylog/files/patch-etc_Makefile.in')
-rw-r--r-- | sysutils/epylog/files/patch-etc_Makefile.in | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/sysutils/epylog/files/patch-etc_Makefile.in b/sysutils/epylog/files/patch-etc_Makefile.in new file mode 100644 index 000000000000..bd41bbd4c9f0 --- /dev/null +++ b/sysutils/epylog/files/patch-etc_Makefile.in @@ -0,0 +1,25 @@ +--- etc/Makefile.in.orig Wed Jul 20 05:29:47 2005 ++++ etc/Makefile.in Wed Jul 20 05:32:37 2005 +@@ -32,8 +32,8 @@ + + SUBDIRS = modules.d + INSTALLDIRS = $(pkgconfdir) +-CFGFILES = epylog.conf notice_dist.xml notice_local.xml report_template.html \ +- trojans.list weed_dist.cf weed_local.cf ++CFGFILES = epylog.conf notice_local.xml report_template.html weed_local.cf ++FILES = notice_dist.xml trojans.list weed_dist.cf + + all: all-stamp + +@@ -47,7 +47,10 @@ + + install: all installdirs + for CFGFILE in $(CFGFILES); do \ +- $(INSTALL_DATA) $$CFGFILE $(DESTDIR)$(pkgconfdir)/$$CFGFILE; \ ++ $(INSTALL_DATA) $$CFGFILE $(DESTDIR)$(pkgconfdir)/$$CFGFILE.default; \ ++ done ++ for FILE in $(FILES); do \ ++ $(INSTALL_DATA) $$FILE $(DESTDIR)$(pkgconfdir); \ + done + for subdir in $(SUBDIRS) ; do \ + $(MAKE) -C $$subdir install ; \ |