diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-05-10 16:21:54 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-05-10 16:21:54 +0000 |
commit | 65ccee408c11c0a16292829cf4faa40a82a05b1a (patch) | |
tree | 6ce575a8ed828709a50ef3947b8eb6c3326d238f | |
parent | 8c369809b8dd3c2821831cb634289ba6c9a3722f (diff) | |
download | pkgsrc-65ccee408c11c0a16292829cf4faa40a82a05b1a.tar.gz |
Update to 0.4.2:
Added a 'Copy Both' menu item to the 'Entry' menu that 'queues' the username
and password on the clipboard. Also, this release fixes some bugs in the
configure script.
-rw-r--r-- | security/gpass/Makefile | 5 | ||||
-rw-r--r-- | security/gpass/PLIST | 4 | ||||
-rw-r--r-- | security/gpass/distinfo | 9 | ||||
-rw-r--r-- | security/gpass/patches/patch-ab | 22 | ||||
-rw-r--r-- | security/gpass/patches/patch-ac | 21 |
5 files changed, 40 insertions, 21 deletions
diff --git a/security/gpass/Makefile b/security/gpass/Makefile index c4aef49e607..52be477a95d 100644 --- a/security/gpass/Makefile +++ b/security/gpass/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2004/05/02 11:57:40 jmmv Exp $ +# $NetBSD: Makefile,v 1.3 2004/05/10 16:21:54 jmmv Exp $ # -DISTNAME= gpass-0.4.1 +DISTNAME= gpass-0.4.2 CATEGORIES= security gnome MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=gpass/} @@ -13,7 +13,6 @@ GNU_CONFIGURE= YES USE_BUILDLINK3= YES USE_DIRS+= xdg-1.1 USE_LIBTOOL= YES -USE_PKGLOCALEDIR= YES .include "../../devel/gettext-lib/buildlink3.mk" .include "../../devel/libglade2/buildlink3.mk" diff --git a/security/gpass/PLIST b/security/gpass/PLIST index 9d702356f2a..efe63381d35 100644 --- a/security/gpass/PLIST +++ b/security/gpass/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2004/04/29 08:01:24 jmmv Exp $ +@comment $NetBSD: PLIST,v 1.2 2004/05/10 16:21:54 jmmv Exp $ bin/gpass share/applications/gpass.desktop share/doc/gpass/ABOUT-NLS @@ -17,8 +17,6 @@ share/gpass/main-window.glade share/gpass/master-password-dialog.glade share/gpass/password-entry-dialog.glade share/gpass/remove-dialog.glade -share/gpass/stock_edit.png -${PKGLOCALEDIR}/locale/da/LC_MESSAGES/gpass.mo @dirrm share/gpass @dirrm share/doc/gpass @comment in xdg-dirs: @dirrm share/applications diff --git a/security/gpass/distinfo b/security/gpass/distinfo index 667c17c4475..8c449c7cf69 100644 --- a/security/gpass/distinfo +++ b/security/gpass/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.2 2004/05/02 11:57:40 jmmv Exp $ +$NetBSD: distinfo,v 1.3 2004/05/10 16:21:54 jmmv Exp $ -SHA1 (gpass-0.4.1.tar.gz) = 1f54b8e3a6f33791db7c383147af525b48316616 -Size (gpass-0.4.1.tar.gz) = 433563 bytes +SHA1 (gpass-0.4.2.tar.gz) = cc79a2dcab45995a870ae6f7f4ee3fddbe2033f3 +Size (gpass-0.4.2.tar.gz) = 412583 bytes SHA1 (patch-aa) = 773b024a7a217efbafabe35fbe81e325f9c93589 -SHA1 (patch-ab) = cf158163b5141632e7272820f54bfc48529018cf +SHA1 (patch-ab) = 5386012d3f4996caa6cb08ba02bfc5f5d5edb209 +SHA1 (patch-ac) = 07d643e195d8c56f502482e743903764a9b17e17 diff --git a/security/gpass/patches/patch-ab b/security/gpass/patches/patch-ab index 2efab2e2506..c1f42033fa6 100644 --- a/security/gpass/patches/patch-ab +++ b/security/gpass/patches/patch-ab @@ -1,13 +1,13 @@ -$NetBSD: patch-ab,v 1.2 2004/05/02 11:57:40 jmmv Exp $ +$NetBSD: patch-ab,v 1.3 2004/05/10 16:21:54 jmmv Exp $ ---- po/Makefile.in.in.orig 2004-04-27 01:58:47.000000000 +0200 -+++ po/Makefile.in.in -@@ -29,7 +29,7 @@ gettextsrcdir = $(datadir)/gettext/po - INSTALL = @INSTALL@ - INSTALL_DATA = @INSTALL_DATA@ - MKINSTALLDIRS = @MKINSTALLDIRS@ --mkinstalldirs = $(SHELL) `case "$(MKINSTALLDIRS)" in /*) echo "$(MKINSTALLDIRS)" ;; *) echo "$(top_builddir)/$(MKINSTALLDIRS)" ;; esac` -+mkinstalldirs = @MKINSTALLDIRS@ +--- src/Makefile.in.orig 2004-05-06 22:57:44.000000000 +0200 ++++ src/Makefile.in +@@ -177,7 +177,7 @@ noinst_HEADERS = \ + gpass_LDFLAGS = - CC = @CC@ - GMSGFMT = @GMSGFMT@ + gpass_LDADD = \ +- $(GNOME_LIBS) ++ $(GNOME_LIBS) $(OPENSSL_LIBS) + + subdir = src + mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs diff --git a/security/gpass/patches/patch-ac b/security/gpass/patches/patch-ac new file mode 100644 index 00000000000..0547a5beb52 --- /dev/null +++ b/security/gpass/patches/patch-ac @@ -0,0 +1,21 @@ +$NetBSD: patch-ac,v 1.1 2004/05/10 16:21:54 jmmv Exp $ + +--- configure.orig 2004-05-06 22:57:46.000000000 +0200 ++++ configure +@@ -20291,6 +20291,7 @@ esac + fi + PKG_CONFIG=$ac_cv_path_PKG_CONFIG + ++if false; then + if test -n "$PKG_CONFIG"; then + echo "$as_me:$LINENO: result: $PKG_CONFIG" >&5 + echo "${ECHO_T}$PKG_CONFIG" >&6 +@@ -20350,6 +20351,8 @@ echo "${ECHO_T}$OPENSSL_LIBS" >&6 + else + exit + fi ++fi ++OPENSSL_LIBS="-lssl -lcrypto" + + + |