From sevan@newbie.thingamajig-systems.co.uk  Sat Jan 23 01:58:10 2010
Return-Path: <sevan@newbie.thingamajig-systems.co.uk>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 2F2391065672
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Jan 2010 01:58:10 +0000 (UTC)
	(envelope-from sevan@newbie.thingamajig-systems.co.uk)
Received: from newbie.thingamajig-systems.co.uk (newbie.thingamajig-systems.co.uk [93.97.185.103])
	by mx1.freebsd.org (Postfix) with ESMTP id 3EE668FC0C
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 23 Jan 2010 01:58:08 +0000 (UTC)
Received: from newbie.thingamajig-systems.co.uk (localhost [127.0.0.1])
	by newbie.thingamajig-systems.co.uk (8.14.3/8.14.3) with ESMTP id o0N1scUl004502;
	Sat, 23 Jan 2010 01:54:38 GMT
	(envelope-from sevan@newbie.thingamajig-systems.co.uk)
Received: (from root@localhost)
	by newbie.thingamajig-systems.co.uk (8.14.3/8.14.3/Submit) id o0N1sbpp004501;
	Sat, 23 Jan 2010 01:54:37 GMT
	(envelope-from sevan)
Message-Id: <201001230154.o0N1sbpp004501@newbie.thingamajig-systems.co.uk>
Date: Sat, 23 Jan 2010 01:54:37 GMT
From: Sevan Janiyan <venture37@geeklan.co.uk>
To: FreeBSD-gnats-submit@freebsd.org
Cc: eugen@grosbein.pp.ru
Subject: [PATCH] net/AquaGatekeeper: use $SUB_FILES to dynamically adjust pkg-message
X-Send-Pr-Version: 3.113
X-GNATS-Notify: eugen@grosbein.pp.ru

>Number:         143096
>Category:       ports
>Synopsis:       [PATCH] net/AquaGatekeeper: use $SUB_FILES to dynamically adjust pkg-message
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    glarkin
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Sat Jan 23 02:00:13 UTC 2010
>Closed-Date:    Wed Feb 24 16:48:43 EST 2010
>Last-Modified:  Wed Feb 24 21:50:03 UTC 2010
>Originator:     Sevan Janiyan
>Release:        FreeBSD 8.0-RELEASE-p2 amd64
>Organization:
>Environment:
System: FreeBSD newbie.thingamajig-systems.co.uk 8.0-RELEASE-p2 FreeBSD 8.0-RELEASE-p2 #0: Tue Jan  5 21:11:58 UTC
>Description:
don't invoke sed manually, use SUB_FILES
use EXAMPLESDIR in pkg-message instead of %%PREFIX%%/share/examples/AquaGatekeeper 

Added file(s):
- files/pkg-message.in

Removed file(s):
- pkg-message

Port maintainer (eugen@grosbein.pp.ru) is cc'd.

Generated with FreeBSD Port Tools 0.99
>How-To-Repeat:
>Fix:

--- AquaGatekeeper-1.22_3.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/net/AquaGatekeeper/Makefile,v
retrieving revision 1.13
diff -u -r1.13 Makefile
--- Makefile	5 Jan 2009 21:36:37 -0000	1.13
+++ Makefile	23 Jan 2010 01:52:01 -0000
@@ -23,6 +23,22 @@
 
 RESTRICTED=	No commercial redistribution
 
+SUB_FILES=	pkg-message
+
+.include <bsd.port.pre.mk>
+
+.if ${ARCH} == "amd64"
+DISTNAME=	AquaGatekeeper122FreeBSDamd64Build131
+.else
+DISTNAME=	AquaGatekeeper122FreeBSDBuild445
+.endif
+
+.if ${ARCH} == "i386"
+LIB_DEPENDS=	c.4:${PORTSDIR}/misc/compat4x
+.elif ${ARCH} == "amd64"
+LIB_DEPENDS=	c.5:${PORTSDIR}/misc/compat5x
+.endif
+
 .if !defined(BATCH) && !defined(PACKAGE_BUILDING)
 IS_INTERACTIVE=	yes
 .endif
@@ -46,20 +62,6 @@
 
 post-install:
 	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
-	@${SED} "s'%%PREFIX%%'${PREFIX}'" < pkg-message
-
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == "i386"
-LIB_DEPENDS=	c.4:${PORTSDIR}/misc/compat4x
-.elif ${ARCH} == "amd64"
-LIB_DEPENDS=	c.5:${PORTSDIR}/misc/compat5x
-.endif
-
-.if ${ARCH} == "amd64"
-DISTNAME=	AquaGatekeeper122FreeBSDamd64Build131
-.else
-DISTNAME=	AquaGatekeeper122FreeBSDBuild445
-.endif
+	@{CAT} ${PKG-MESSAGE}
 
 .include <bsd.port.post.mk>
Index: pkg-message
===================================================================
RCS file: pkg-message
diff -N pkg-message
--- pkg-message	2 Nov 2003 17:37:14 -0000	1.1
+++ /dev/null	1 Jan 1970 00:00:00 -0000
@@ -1,5 +0,0 @@
-****************************************************************************
-  Please read documentation located in %%PREFIX%%/share/doc/AquaGatekeeper
-  You will need to write configuration file to run the Gatekeeper.
-  Some examples are in %%PREFIX%%/share/examples/AquaGatekeeper
-****************************************************************************
Index: files/pkg-message.in
===================================================================
RCS file: files/pkg-message.in
diff -N files/pkg-message.in
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ files/pkg-message.in	23 Jan 2010 01:52:01 -0000
@@ -0,0 +1,5 @@
+****************************************************************************
+  Please read documentation located in %%EXAMPLESDIR%%
+  You will need to write configuration file to run the Gatekeeper.
+  Some examples are in %%EXAMPLESDIR%%
+****************************************************************************
--- AquaGatekeeper-1.22_3.patch ends here ---

>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Sat Jan 23 02:00:39 UTC 2010 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=143096 

From: Edwin Groothuis <edwin@FreeBSD.org>
To: eugen@grosbein.pp.ru
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/143096: [PATCH] net/AquaGatekeeper: use $SUB_FILES to dynamically adjust pkg-message
Date: Sat, 23 Jan 2010 02:00:36 UT

 Maintainer of net/AquaGatekeeper,
 
 Please note that PR ports/143096 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/143096
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: Venture37 <venture37@geeklan.co.uk>
To: bug-followup@freebsd.org
Cc:  
Subject: Re: ports/143096: [PATCH] net/AquaGatekeeper: use $SUB_FILES to dynamically
 adjust pkg-message
Date: Sat, 23 Jan 2010 02:05:40 +0000

 This is a multi-part message in MIME format.
 --------------040104090503030804090101
 Content-Type: text/plain; charset=ISO-8859-1; format=flowed
 Content-Transfer-Encoding: 7bit
 
 PKGMESSAGE not PKG-MESSAGE!
 
 --------------040104090503030804090101
 Content-Type: multipart/appledouble;
  boundary="------------ad080701010309020807010807"; x-mac-type="0"; x-mac-creator="0";
  name="AquaGatekeeper-1.22_3.patch"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: attachment;
  filename="AquaGatekeeper-1.22_3.patch"
 
 --------------ad080701010309020807010807
 Content-Type: application/applefile
 Content-Transfer-Encoding: base64
 
 BxYFAAAAAgAAAAAAAAAAAAAAAAAAAAAABQADAAAAVgAAABsAAAAJAAAAcQAAACAAAAAIAAAA
 kQAAABAAAAAEAAAAoQAAAAAAAAACAAAAoQAAAB4BAABBcXVhR2F0ZWtlZXBlci0xLjIyXzMu
 cGF0Y2gAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFQV7RJUFe0SAAxtS/QV7RIA
 AAEAAAABAAAAAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAQAAAAAAAAAA
 HgQAAAASAAAAABwAHv//
 
 --------------ad080701010309020807010807
 Content-Type: application/octet-stream; name="AquaGatekeeper-1.22_3.patch"
 Content-Transfer-Encoding: base64
 Content-Disposition: inline; filename="AquaGatekeeper-1.22_3.patch"
 
 SW5kZXg6IE1ha2VmaWxlCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KUkNTIGZpbGU6IC9ob21lL25jdnMvcG9y
 dHMvbmV0L0FxdWFHYXRla2VlcGVyL01ha2VmaWxlLHYKcmV0cmlldmluZyByZXZpc2lvbiAx
 LjEzCmRpZmYgLXUgLXIxLjEzIE1ha2VmaWxlCi0tLSBNYWtlZmlsZQk1IEphbiAyMDA5IDIx
 OjM2OjM3IC0wMDAwCTEuMTMKKysrIE1ha2VmaWxlCTIzIEphbiAyMDEwIDAxOjUyOjAxIC0w
 MDAwCkBAIC0yMyw2ICsyMywyMiBAQAogCiBSRVNUUklDVEVEPQlObyBjb21tZXJjaWFsIHJl
 ZGlzdHJpYnV0aW9uCiAKK1NVQl9GSUxFUz0JcGtnLW1lc3NhZ2UKKworLmluY2x1ZGUgPGJz
 ZC5wb3J0LnByZS5taz4KKworLmlmICR7QVJDSH0gPT0gImFtZDY0IgorRElTVE5BTUU9CUFx
 dWFHYXRla2VlcGVyMTIyRnJlZUJTRGFtZDY0QnVpbGQxMzEKKy5lbHNlCitESVNUTkFNRT0J
 QXF1YUdhdGVrZWVwZXIxMjJGcmVlQlNEQnVpbGQ0NDUKKy5lbmRpZgorCisuaWYgJHtBUkNI
 fSA9PSAiaTM4NiIKK0xJQl9ERVBFTkRTPQljLjQ6JHtQT1JUU0RJUn0vbWlzYy9jb21wYXQ0
 eAorLmVsaWYgJHtBUkNIfSA9PSAiYW1kNjQiCitMSUJfREVQRU5EUz0JYy41OiR7UE9SVFNE
 SVJ9L21pc2MvY29tcGF0NXgKKy5lbmRpZgorCiAuaWYgIWRlZmluZWQoQkFUQ0gpICYmICFk
 ZWZpbmVkKFBBQ0tBR0VfQlVJTERJTkcpCiBJU19JTlRFUkFDVElWRT0JeWVzCiAuZW5kaWYK
 QEAgLTQ2LDIwICs2Miw2IEBACiAKIHBvc3QtaW5zdGFsbDoKIAlAJHtTSH0gJHtQS0dJTlNU
 QUxMfSAke1BLR05BTUV9IFBPU1QtSU5TVEFMTAotCUAke1NFRH0gInMnJSVQUkVGSVglJSck
 e1BSRUZJWH0nIiA8IHBrZy1tZXNzYWdlCi0KLS5pbmNsdWRlIDxic2QucG9ydC5wcmUubWs+
 Ci0KLS5pZiAke0FSQ0h9ID09ICJpMzg2IgotTElCX0RFUEVORFM9CWMuNDoke1BPUlRTRElS
 fS9taXNjL2NvbXBhdDR4Ci0uZWxpZiAke0FSQ0h9ID09ICJhbWQ2NCIKLUxJQl9ERVBFTkRT
 PQljLjU6JHtQT1JUU0RJUn0vbWlzYy9jb21wYXQ1eAotLmVuZGlmCi0KLS5pZiAke0FSQ0h9
 ID09ICJhbWQ2NCIKLURJU1ROQU1FPQlBcXVhR2F0ZWtlZXBlcjEyMkZyZWVCU0RhbWQ2NEJ1
 aWxkMTMxCi0uZWxzZQotRElTVE5BTUU9CUFxdWFHYXRla2VlcGVyMTIyRnJlZUJTREJ1aWxk
 NDQ1Ci0uZW5kaWYKKwlAe0NBVH0gJHtQS0dNRVNTQUdFfQogCiAuaW5jbHVkZSA8YnNkLnBv
 cnQucG9zdC5taz4KSW5kZXg6IHBrZy1tZXNzYWdlCj09PT09PT09PT09PT09PT09PT09PT09
 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KUkNTIGZpbGU6
 IHBrZy1tZXNzYWdlCmRpZmYgLU4gcGtnLW1lc3NhZ2UKLS0tIHBrZy1tZXNzYWdlCTIgTm92
 IDIwMDMgMTc6Mzc6MTQgLTAwMDAJMS4xCisrKyAvZGV2L251bGwJMSBKYW4gMTk3MCAwMDow
 MDowMCAtMDAwMApAQCAtMSw1ICswLDAgQEAKLSoqKioqKioqKioqKioqKioqKioqKioqKioq
 KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioKLSAg
 UGxlYXNlIHJlYWQgZG9jdW1lbnRhdGlvbiBsb2NhdGVkIGluICUlUFJFRklYJSUvc2hhcmUv
 ZG9jL0FxdWFHYXRla2VlcGVyCi0gIFlvdSB3aWxsIG5lZWQgdG8gd3JpdGUgY29uZmlndXJh
 dGlvbiBmaWxlIHRvIHJ1biB0aGUgR2F0ZWtlZXBlci4KLSAgU29tZSBleGFtcGxlcyBhcmUg
 aW4gJSVQUkVGSVglJS9zaGFyZS9leGFtcGxlcy9BcXVhR2F0ZWtlZXBlcgotKioqKioqKioq
 KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq
 KioqKioqKioqKioqKgpJbmRleDogZmlsZXMvcGtnLW1lc3NhZ2UuaW4KPT09PT09PT09PT09
 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
 PQpSQ1MgZmlsZTogZmlsZXMvcGtnLW1lc3NhZ2UuaW4KZGlmZiAtTiBmaWxlcy9wa2ctbWVz
 c2FnZS5pbgotLS0gL2Rldi9udWxsCTEgSmFuIDE5NzAgMDA6MDA6MDAgLTAwMDAKKysrIGZp
 bGVzL3BrZy1tZXNzYWdlLmluCTIzIEphbiAyMDEwIDAxOjUyOjAxIC0wMDAwCkBAIC0wLDAg
 KzEsNSBAQAorKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq
 KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKgorICBQbGVhc2UgcmVhZCBkb2N1bWVu
 dGF0aW9uIGxvY2F0ZWQgaW4gJSVFWEFNUExFU0RJUiUlCisgIFlvdSB3aWxsIG5lZWQgdG8g
 d3JpdGUgY29uZmlndXJhdGlvbiBmaWxlIHRvIHJ1biB0aGUgR2F0ZWtlZXBlci4KKyAgU29t
 ZSBleGFtcGxlcyBhcmUgaW4gJSVFWEFNUExFU0RJUiUlCisqKioqKioqKioqKioqKioqKioq
 KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq
 KioqCg==
 
 --------------ad080701010309020807010807--
 
 
 --------------040104090503030804090101--

From: Eugene Grosbein <egrosbein@rdtc.ru>
To: bug-followup@FreeBSD.ORG
Cc:  
Subject: Re: ports/143096: [PATCH] net/AquaGatekeeper: use $SUB_FILES to dynamically
 adjust pkg-message
Date: Sat, 23 Jan 2010 23:40:56 +0700

 This is a multi-part message in MIME format.
 --------------050309000908030507080204
 Content-Type: text/plain; charset=KOI8-R
 Content-Transfer-Encoding: 7bit
 
 The intent is of submitter is good but patch needs some polishing.
 While I'm here, make more useful changes to the port:
 
 - support cross-platform installation by suppression of striping for
 precompiled binary;
 - change MAINTAINER e-mail to another one with less strict antispam policy;
 - group ARCH-dependent lines together;
 - replace dead WWW link with living mirror;
 - make it clearly visible that the software is effectively "abadonware"
 for now.
 
 I'm not requesting deletion of the port because I still see some
 interest in it periodically
 and it still runs fine but there should be clear statement that this
 soft is dying.
 
 Corrected patch is in the attachment, please commit.
 
 Eugene Grosbein
 
 --------------050309000908030507080204
 Content-Type: text/plain;
  name="agk.patch"
 Content-Transfer-Encoding: 7bit
 Content-Disposition: inline;
  filename="agk.patch"
 
 diff -urN AquaGatekeeper.orig/Makefile AquaGatekeeper/Makefile
 --- AquaGatekeeper.orig/Makefile	2009-01-06 08:09:28.000000000 +0700
 +++ AquaGatekeeper/Makefile	2010-01-23 23:34:17.000000000 +0700
 @@ -13,7 +13,7 @@
  		ftp://www.kuzbass.ru/pub/FreeBSD/ports/distfiles/
  EXTRACT_SUFX=	.tgz
  
 -MAINTAINER=	eugen@grosbein.pp.ru
 +MAINTAINER=	ports@grosbein.pp.ru
  COMMENT=	Aqua H323 Gatekeeper and proxy
  
  WRKSRC=		${WRKDIR}/${PORTNAME}
 @@ -22,6 +22,10 @@
  MD5_FILE=	${MASTERDIR}/distinfo.${ARCH}
  
  RESTRICTED=	No commercial redistribution
 +SUB_FILES=	pkg-message
 +STRIP=
 +STRIP_CMD=	${TRUE}
 +DEPRECATED=	Binary port of software abadonned by the vendor
  
  .if !defined(BATCH) && !defined(PACKAGE_BUILDING)
  IS_INTERACTIVE=	yes
 @@ -46,20 +50,17 @@
  
  post-install:
  	@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
 -	@${SED} "s'%%PREFIX%%'${PREFIX}'" < pkg-message
 +	@${CAT} ${PKGMESSAGE}
  
  .include <bsd.port.pre.mk>
  
 +# This is binary port of closed-source software
  .if ${ARCH} == "i386"
 +DISTNAME=	AquaGatekeeper122FreeBSDBuild445
  LIB_DEPENDS=	c.4:${PORTSDIR}/misc/compat4x
  .elif ${ARCH} == "amd64"
 -LIB_DEPENDS=	c.5:${PORTSDIR}/misc/compat5x
 -.endif
 -
 -.if ${ARCH} == "amd64"
  DISTNAME=	AquaGatekeeper122FreeBSDamd64Build131
 -.else
 -DISTNAME=	AquaGatekeeper122FreeBSDBuild445
 +LIB_DEPENDS=	c.5:${PORTSDIR}/misc/compat5x
  .endif
  
  .include <bsd.port.post.mk>
 diff -urN AquaGatekeeper.orig/files/pkg-message.in AquaGatekeeper/files/pkg-message.in
 --- AquaGatekeeper.orig/files/pkg-message.in	1970-01-01 07:00:00.000000000 +0700
 +++ AquaGatekeeper/files/pkg-message.in	2010-01-23 23:32:28.000000000 +0700
 @@ -0,0 +1,9 @@
 +****************************************************************************
 +!!! NOTE: THE AQUA GATEKEEPER IS DISCONTIUED BY ITS VENDOR. No vendor support,
 +!!! no updates, no bugfixes. This port is still provided to support
 +!!! old installations only. You should choose other software for new setups.
 +
 +  Please read documentation located in %%DOCSDIR%%
 +  You will need to write configuration file to run the Gatekeeper.
 +  Some examples are in %%EXAMPLESDIR%%
 +****************************************************************************
 diff -urN AquaGatekeeper.orig/pkg-descr AquaGatekeeper/pkg-descr
 --- AquaGatekeeper.orig/pkg-descr	2003-11-03 00:37:14.000000000 +0700
 +++ AquaGatekeeper/pkg-descr	2010-01-23 23:32:28.000000000 +0700
 @@ -6,7 +6,11 @@
  It is not a free software but may be used free of charge.
  The Aqua Gatekeeper Startup Edition is limited to 30 concurrent calls.
  
 -WWW: http://www.aqua.comptek.ru/man/voip/gatekeeper/index.htm
 +!!! NOTE: THE AQUA GATEKEEPER IS DISCONTIUED BY ITS VENDOR. No vendor support,
 +!!! no updates, no bugfixes. This port is still provided to support
 +!!! old installations only. You should choose other software for new setups.
 +
 +WWW: http://www.kuzbass.ru/docs/AquaGatekeeper/AquaGatekeeper.htm
  
  - Grosbein
 -eugen@grosbein.pp.ru
 +ports@grosbein.pp.ru
 diff -urN AquaGatekeeper.orig/pkg-message AquaGatekeeper/pkg-message
 --- AquaGatekeeper.orig/pkg-message	2003-11-03 00:37:14.000000000 +0700
 +++ AquaGatekeeper/pkg-message	1970-01-01 07:00:00.000000000 +0700
 @@ -1,5 +0,0 @@
 -****************************************************************************
 -  Please read documentation located in %%PREFIX%%/share/doc/AquaGatekeeper
 -  You will need to write configuration file to run the Gatekeeper.
 -  Some examples are in %%PREFIX%%/share/examples/AquaGatekeeper
 -****************************************************************************
 
 --------------050309000908030507080204--
Responsible-Changed-From-To: freebsd-ports-bugs->glarkin 
Responsible-Changed-By: glarkin 
Responsible-Changed-When: Thu Jan 28 10:25:22 EST 2010 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=143096 
State-Changed-From-To: feedback->closed 
State-Changed-By: glarkin 
State-Changed-When: Wed Feb 24 16:48:34 EST 2010 
State-Changed-Why:  
Committed, thank you! 

http://www.freebsd.org/cgi/query-pr.cgi?pr=143096 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/143096: commit references a PR
Date: Wed, 24 Feb 2010 21:48:34 +0000 (UTC)

 glarkin     2010-02-24 21:48:26 UTC
 
   FreeBSD ports repository
 
   Modified files:
     net/AquaGatekeeper   Makefile pkg-descr 
   Added files:
     net/AquaGatekeeper/files pkg-message.in 
   Removed files:
     net/AquaGatekeeper   pkg-message 
   Log:
   - Use $SUB_FILES to dynamically adjust pkg-message [1]
   - Support cross-platform installation by suppression of stripping for
     precompiled binary [2]
   - Change MAINTAINER e-mail [2]
   - Group ARCH-dependent lines together [2]
   - Replace dead WWW link with living mirror [2]
   - Make it clearly visible that the software is effectively "abandonware"
     for now [2]
   - Added i386 dependency on crypto.so.3 (misc/compat5x)
   
   PR:             ports/143096
   Submitted by:   Sevan Janiyan <venture37@geeklan.co.uk>
   Approved by:    Eugene Grosbein <egrosbein@rdtc.ru> (maintainer) [2]
   Feature safe:   yes
   
   Revision  Changes    Path
   1.14      +11 -9     ports/net/AquaGatekeeper/Makefile
   1.1       +9 -0      ports/net/AquaGatekeeper/files/pkg-message.in (new)
   1.2       +6 -2      ports/net/AquaGatekeeper/pkg-descr
   1.2       +0 -5      ports/net/AquaGatekeeper/pkg-message (dead)
 _______________________________________________
 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"
 
>Unformatted:
