From nobody@FreeBSD.org  Sat May  7 12:32:09 2011
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id AC060106564A
	for <freebsd-gnats-submit@FreeBSD.org>; Sat,  7 May 2011 12:32:09 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 909288FC14
	for <freebsd-gnats-submit@FreeBSD.org>; Sat,  7 May 2011 12:32:09 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p47CW9pq038689
	for <freebsd-gnats-submit@FreeBSD.org>; Sat, 7 May 2011 12:32:09 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.4/8.14.4/Submit) id p47CW8so038688;
	Sat, 7 May 2011 12:32:08 GMT
	(envelope-from nobody)
Message-Id: <201105071232.p47CW8so038688@red.freebsd.org>
Date: Sat, 7 May 2011 12:32:08 GMT
From: Ruslan Mahmatkhanov <cvs-src@yandex.ru>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [UPDATE] security/gtkpasman: update to 0.11
X-Send-Pr-Version: www-3.1
X-GNATS-Notify: phil@teaser.fr

>Number:         156862
>Category:       ports
>Synopsis:       [UPDATE] security/gtkpasman: update to 0.11
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat May 07 12:40:08 UTC 2011
>Closed-Date:    Tue Jun 28 14:00:22 UTC 2011
>Last-Modified:  Tue Jun 28 14:10:09 UTC 2011
>Originator:     Ruslan Mahmatkhanov
>Release:        9.0-CURRENT
>Organization:
>Environment:
9.0-CURRENT i386
>Description:
- update to 0.11
- use gnupg2
- add -with-gtk2 to CONFIGURE_ARGS since gtkpasman looking for gtk30 by default
- install desktop-file to be able to call gtkpasman from menu
- show pkg-message only when NOPORTDOCS is not defined
- use %%DOCSDIR%% instead of full path in pkg-message
- couple of whitespace fixes in pkg-descr
>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -ruNa gtkpasman.orig/Makefile gtkpasman/Makefile
--- gtkpasman.orig/Makefile	2010-12-04 10:33:25.000000000 +0300
+++ gtkpasman/Makefile	2011-05-07 16:23:11.000000000 +0400
@@ -6,26 +6,26 @@
 #
 
 PORTNAME=	gtkpasman
-PORTVERSION=	0.9
-PORTREVISION=	8
+PORTVERSION=	0.11
 CATEGORIES=	security
 MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}-sources/${PORTVERSION}
 
 MAINTAINER=	phil@teaser.fr
 COMMENT=	A GTK+ passwords manager for system and network administrators
 
-RUN_DEPENDS+=   gpgv:${PORTSDIR}/security/gnupg1
+RUN_DEPENDS+=	gpgv2:${PORTSDIR}/security/gnupg
 
 USE_GMAKE=	yes
-USE_GNOME=	gtk20
+USE_GNOME=	desktopfileutils gtk20
 GNU_CONFIGURE=	yes
+CONFIGURE_ARGS+=	--with-gtk2
 USE_AUTOTOOLS=	automake aclocal autoconf
 
 SUB_FILES=	pkg-message
 PKGMESSAGE=	${WRKDIR}/pkg-message
 
-DOCS=		README src/gpasman4.sample
-PLIST_FILES=	bin/gtkpasman
+DOCS=		README data/gpasman4.sample
+PLIST_FILES=	bin/gtkpasman share/applications/gtkpasman.desktop
 ACLOCAL_ARGS?=	--acdir=${ACLOCAL_DIR} -I ${LOCALBASE}/share/aclocal
 
 .if !defined(NOPORTDOCS)
@@ -34,12 +34,17 @@
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/src/gtkpasman ${PREFIX}/bin
+	${INSTALL_DATA} ${WRKSRC}/data/gtkpasman.desktop \
+	${PREFIX}/share/applications
 .if !defined(NOPORTDOCS)
 	${MKDIR} ${DOCSDIR}
 	${INSTALL_MAN} ${DOCS:S,^,${WRKSRC}/,} ${DOCSDIR}
 .endif
 
 post-install:
+.if !defined(NOPORTDOCS)
 	@${CAT} ${PKGMESSAGE}
+.endif
+	@-update-desktop-database
 
 .include <bsd.port.mk>
diff -ruNa gtkpasman.orig/distinfo gtkpasman/distinfo
--- gtkpasman.orig/distinfo	2007-02-06 19:03:42.000000000 +0300
+++ gtkpasman/distinfo	2011-05-07 16:04:56.000000000 +0400
@@ -1,3 +1,2 @@
-MD5 (gtkpasman-0.9.tar.gz) = dbf4f01d80939b397460b25d0b654b36
-SHA256 (gtkpasman-0.9.tar.gz) = 54e3f663eb84a9ab1d681bf9197c011e1df0438b2632dfd5f835247cd254e57a
-SIZE (gtkpasman-0.9.tar.gz) = 123727
+SHA256 (gtkpasman-0.11.tar.gz) = a2514a96ca195f1e0834dea573119e97c48104ef2a6f6fd512ee045bcb03a3a2
+SIZE (gtkpasman-0.11.tar.gz) = 117037
diff -ruNa gtkpasman.orig/files/pkg-message.in gtkpasman/files/pkg-message.in
--- gtkpasman.orig/files/pkg-message.in	2005-10-05 21:21:11.000000000 +0400
+++ gtkpasman/files/pkg-message.in	2011-05-07 16:15:05.000000000 +0400
@@ -2,7 +2,7 @@
 #####################################################################
 This port installs a sample password file in the following location:
 
-%%PREFIX%%/share/doc/gtkpasman/
+%%DOCSDIR%%
 
 You may find this file useful while making your own password file.
 Also note that the File->Open function is not implemented yet.
diff -ruNa gtkpasman.orig/pkg-descr gtkpasman/pkg-descr
--- gtkpasman.orig/pkg-descr	2007-02-06 19:03:42.000000000 +0300
+++ gtkpasman/pkg-descr	2011-05-07 16:17:50.000000000 +0400
@@ -1,8 +1,8 @@
-The purpose of Gtkpasman is to provide system and network administrators a 
+The purpose of Gtkpasman is to provide system and network administrators a
 convenient tool to manage a passwords knowledge base related to customers,
 servers, services... It can help to retrieve passwords, or even connect to
 servers (ssh, telnet, ftp).
-Passwords must be kept in a gnupg crypted file. The structure of the file is 
+Passwords must be kept in a gnupg crypted file. The structure of the file is
 predefined, but very easy to edit and maintain.
 
 WWW: http://gtkpasman.sourceforge.net/


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat May 7 12:40:26 UTC 2011 
Responsible-Changed-Why:  
miwi@ wants his PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=156862 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Sat May 7 12:40:31 UTC 2011 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: phil@teaser.fr
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/156862: [UPDATE] security/gtkpasman: update to 0.11
Date: Sat, 7 May 2011 12:40:28 UT

 Maintainer of security/gtkpasman,
 
 Please note that PR ports/156862 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/156862
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org
State-Changed-From-To: feedback->open 
State-Changed-By: miwi 
State-Changed-When: Sun Jun 26 04:43:23 UTC 2011 
State-Changed-Why:  
. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=156862 
State-Changed-From-To: open->feedback 
State-Changed-By: miwi 
State-Changed-When: Sun Jun 26 04:43:33 UTC 2011 
State-Changed-Why:  
http://gecko.miwibox.org/index.php?action=describe_port&id=1704 build 
failed 

http://www.freebsd.org/cgi/query-pr.cgi?pr=156862 
State-Changed-From-To: feedback->closed 
State-Changed-By: miwi 
State-Changed-When: Tue Jun 28 14:00:18 UTC 2011 
State-Changed-Why:  
Committed. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/156862: commit references a PR
Date: Tue, 28 Jun 2011 14:00:28 +0000 (UTC)

 miwi        2011-06-28 13:59:59 UTC
 
   FreeBSD ports repository
 
   Modified files:
     security/gtkpasman   Makefile distinfo pkg-descr 
     security/gtkpasman/files pkg-message.in 
   Log:
   - Update to 0.11
   - Use gnupg2
   - Add -with-gtk2 to CONFIGURE_ARGS since gtkpasman looking for gtk30 by default
   - Install desktop-file to be able to call gtkpasman from menu
   - Show pkg-message only when NOPORTDOCS is not defined
   - Use %%DOCSDIR%% instead of full path in pkg-message
   - Couple of whitespace fixes in pkg-descr
   
   PR:             156862
   Submitted by:   Ruslan Mahmatkhanov <cvs-src@yandex.ru> (maintainer)
   
   Revision  Changes    Path
   1.28      +11 -6     ports/security/gtkpasman/Makefile
   1.7       +2 -3      ports/security/gtkpasman/distinfo
   1.2       +1 -1      ports/security/gtkpasman/files/pkg-message.in
   1.3       +2 -2      ports/security/gtkpasman/pkg-descr
 _______________________________________________
 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:
