Fixes on net/hanstunnel Makefile: - Use correctly MASTER_SITES to SourceForge - Use appropriate COMMENT to show software propose - Move pkg-message to files/pkg-message.in using SUB_FILES - Change to use INSTALL_PROGRAM instead Fix: Patch attached with submission follows:
Maintainer of net/hanstunnel, Please note that PR ports/180180 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/180180 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org
State Changed From-To: open->feedback Awaiting maintainers feedback (via the GNATS Auto Assign Tool)
Responsible Changed From-To: freebsd-ports-bugs->lippe I'll take it.
I approve the patch. 01.07.2013 23:10, Edwin Groothuis пиÑеÑ: > Maintainer of net/hanstunnel, > > Please note that PR ports/180180 has just been submitted. > > If it contains a patch for an upgrade, an enhancement or a bug fix > you agree on, reply to this email stating that you approve the patch > and a committer will take care of it. > > The full text of the PR can be found at: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/180180 >
Author: lippe Date: Mon Sep 2 15:40:00 2013 New Revision: 326014 URL: http://svnweb.freebsd.org/changeset/ports/326014 Log: - Set correctly MASTER_SITES - Use appropriate COMMENT - Move pkg-message to files/pkg-message.in using SUB_FILES - Use INSTALL_PROGRAM PR: ports/180180 Submitted by: lippe@ Approved by: Alexander Panyushkin <vsityz@gmail.com> (maintainer) Added: head/net/hanstunnel/files/pkg-message.in (contents, props changed) Deleted: head/net/hanstunnel/pkg-message Modified: head/net/hanstunnel/Makefile Modified: head/net/hanstunnel/Makefile ============================================================================== --- head/net/hanstunnel/Makefile Mon Sep 2 15:39:17 2013 (r326013) +++ head/net/hanstunnel/Makefile Mon Sep 2 15:40:00 2013 (r326014) @@ -4,13 +4,12 @@ PORTNAME= hans PORTVERSION= 0.4.1 CATEGORIES= net security -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= /hanstunnel/source/ +MASTER_SITES= SF/hanstunnel/source MAINTAINER= vsityz@gmail.com COMMENT= Hans makes it possible to tunnel IPv4 through ICMP -LICENSE_PERMS_GPL3= yes +LICENSE= GPLv3 OPTIONS_DEFINE= CLANG @@ -20,6 +19,8 @@ OPTIONS_DEFAULT= CLANG PLIST_FILES= bin/hans +SUB_FILES= pkg-message + .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MCLANG} @@ -38,7 +39,7 @@ CPP=gcpp .endif do-install: - @${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} ${WRKSRC}/hans ${LOCALBASE}/bin + @${INSTALL_PROGRAM} ${WRKSRC}/hans ${LOCALBASE}/bin post-install: .SILENT ${ECHO_MSG} Added: head/net/hanstunnel/files/pkg-message.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/hanstunnel/files/pkg-message.in Mon Sep 2 15:40:00 2013 (r326014) @@ -0,0 +1,23 @@ +------------------------------------------------------------ + +Hans runs on Linux as a client and a server. +It runs on FreeBSD client only. + +NOTE: that Hans can not receive echo requests on BSD systems. +Therefore the server only works on Linux. + +------------------------------------------------------------ + +### Running as a server ### + +% hans -s 10.1.2.0 -r -p password -u nobody + +### Running as a client ### + +% hans -c server_address -p password -u nobody + +### Help ### + +% hans + +------------------------------------------------------------ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: feedback->closed Committed. Thanks!