Summary: | security/bruteblock Package does not install correctly | ||
---|---|---|---|
Product: | Ports & Packages | Reporter: | Roger Gujord <roger> |
Component: | Individual Port(s) | Assignee: | Martin Wilke <miwi> |
Status: | Closed FIXED | ||
Severity: | Affects Only Me | ||
Priority: | Normal | ||
Version: | Latest | ||
Hardware: | Any | ||
OS: | Any |
Description
Roger Gujord
2007-03-06 17:00:11 UTC
Class Changed From-To: maintainer-update->change-request Fix category (submitter is not maintainer) State Changed From-To: open->feedback Awaiting maintainers feedback * Edwin Groothuis (edwin@FreeBSD.org) wrote: > Please note that PR ports/110000 has just been submitted. Wow, #110000 is mine :) Thanks for bugreport, there was an error in pkg-plist. Here's the fix: --- bruteblock.patch begins here --- diff -ruN bruteblock.orig/Makefile bruteblock/Makefile --- bruteblock.orig/Makefile Tue Mar 6 22:13:24 2007 +++ bruteblock/Makefile Tue Mar 6 22:17:15 2007 @@ -7,6 +7,7 @@ PORTNAME= bruteblock PORTVERSION= 0.0.5 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://samm.kiev.ua/bruteblock/ \ http://www.amdmi3.ru/distfiles/ diff -ruN bruteblock.orig/pkg-plist bruteblock/pkg-plist --- bruteblock.orig/pkg-plist Tue Mar 6 22:13:24 2007 +++ bruteblock/pkg-plist Tue Mar 6 22:25:02 2007 @@ -2,8 +2,8 @@ sbin/bruteblockd @unexec if cmp -s %D/etc/bruteblock/proftpd.conf.dist %D/etc/bruteblock/proftpd.conf; then rm -f %D/etc/bruteblock/proftpd.conf; fi etc/bruteblock/proftpd.conf.dist -@exec if [ ! -f %D/etc/bruteblock/proftpd.conf ]; then cp -p %D/%F %B/bruteblock/proftpd.conf; fi +@exec if [ ! -f %B/proftpd.conf ]; then cp -p %D/%F %B/proftpd.conf; fi @unexec if cmp -s %D/etc/bruteblock/ssh.conf.dist %D/etc/bruteblock/ssh.conf; then rm -f %D/etc/bruteblock/ssh.conf; fi etc/bruteblock/ssh.conf.dist -@exec if [ ! -f %D/etc/bruteblock/ssh.conf ]; then cp -p %D/%F %B/bruteblock/ssh.conf; fi +@exec if [ ! -f %B/ssh.conf ]; then cp -p %D/%F %B/ssh.conf; fi @dirrmtry etc/bruteblock --- bruteblock.patch ends here --- -- Best regards, Dmitry Marakasov mailto:amdmi3@amdmi3.ru Responsible Changed From-To: freebsd-ports-bugs->miwi I'll take it. miwi 2007-03-06 19:43:28 UTC FreeBSD ports repository Modified files: security/bruteblock Makefile pkg-plist Log: - Fix build problemes - Bump PORTREVISION PR: 110000 \o/ Submitted by: Roger Gujord<roger@gujord.com> Approved by: maintainer Revision Changes Path 1.4 +1 -0 ports/security/bruteblock/Makefile 1.3 +2 -2 ports/security/bruteblock/pkg-plist _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" State Changed From-To: feedback->closed Committed. Thanks! |