| Summary: | port update: net/bounce . timer made optional | ||||||
|---|---|---|---|---|---|---|---|
| Product: | Ports & Packages | Reporter: | SeaD <sead> | ||||
| Component: | Individual Port(s) | Assignee: | Andrej Zverev <az> | ||||
| Status: | Closed FIXED | ||||||
| Severity: | Affects Only Me | ||||||
| Priority: | Normal | ||||||
| Version: | Latest | ||||||
| Hardware: | Any | ||||||
| OS: | Any | ||||||
| Attachments: |
|
||||||
|
Description
SeaD
2007-08-11 14:40:09 UTC
State Changed From-To: open->feedback Awaiting maintainers feedback Responsible Changed From-To: freebsd-ports-bugs->az I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=115420 Adding to audit trail from misfiled PR ports/115480: Date: Tue, 14 Aug 2007 02:00:09 +0600 az 2007-08-26 11:05:00 UTC
FreeBSD ports repository
Modified files:
net/bounce Makefile
Added files:
net/bounce/files patch-04
Log:
- Implement new option -t <integer value in seconds>(*).
- bump PORTREVISION
(*) Since program was drop connections every six hours,
this option provide mechanism to override default constant.
PR: ports/115420
Submitted by: SeaD <sead at mail.ru>
Approved by: maintainer (timeout)
Revision Changes Path
1.23 +1 -1 ports/net/bounce/Makefile
1.1 +58 -0 ports/net/bounce/files/patch-04 (new)
_______________________________________________
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, with minor changes. Thanks! Hello! This pr breaks -d option. Here is the patch: Index: Makefile =================================================================== RCS file: /home/pcvs/ports/net/bounce/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 26 Aug 2007 11:05:00 -0000 1.23 +++ Makefile 30 Aug 2007 13:18:32 -0000 @@ -8,7 +8,7 @@ PORTNAME= bounce PORTVERSION= 1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net security MASTER_SITES= http://www.iagora.com/~espel/ \ ${MASTER_SITE_LOCAL} Index: files/patch-04 =================================================================== RCS file: /home/pcvs/ports/net/bounce/files/patch-04,v retrieving revision 1.1 diff -u -r1.1 patch-04 --- files/patch-04 26 Aug 2007 11:05:00 -0000 1.1 +++ files/patch-04 30 Aug 2007 13:06:18 -0000 @@ -30,7 +30,7 @@ /* Process arguments */ - while( (ch = getopt(argc, argv, "p:a:b:d")) != -1 ) { -+ while( (ch = getopt(argc, argv, "p:a:b:d:t:")) != -1 ) { ++ while( (ch = getopt(argc, argv, "p:a:b:dt:")) != -1 ) { switch(ch) { case 'b': b = 1; case 'd': d = 1; break; |