summaryrefslogtreecommitdiff
path: root/security/tkpasman/patches
diff options
context:
space:
mode:
authorjmmv <jmmv@pkgsrc.org>2002-12-05 21:21:55 +0000
committerjmmv <jmmv@pkgsrc.org>2002-12-05 21:21:55 +0000
commit1de8ecdae59f41fcd3491f28d87acf3f16bdbcdb (patch)
tree5e42032d233e1dfdc52672047d9aac74d287208a /security/tkpasman/patches
parentea1a1bf2a26688df6fe1b88b5860eccd883ba469 (diff)
downloadpkgsrc-1de8ecdae59f41fcd3491f28d87acf3f16bdbcdb.tar.gz
Initial import of tkpasman, version 2.2. Description follows:
TkPasMan is a simple program that lets you store usernames and passwords you collect during access to forums, mailing lists, and other websites. It is inspired in gpasman, but it has more paste possibilities. You can, for example, paste the username at first and then password, using two mouse clicks. Passwords can be stored in a secure file, using OpenSSL to encrypt it. This closes my own PR pkg/18884. Approved by wiz.
Diffstat (limited to 'security/tkpasman/patches')
-rw-r--r--security/tkpasman/patches/patch-aa40
1 files changed, 40 insertions, 0 deletions
diff --git a/security/tkpasman/patches/patch-aa b/security/tkpasman/patches/patch-aa
new file mode 100644
index 00000000000..3bee525a98a
--- /dev/null
+++ b/security/tkpasman/patches/patch-aa
@@ -0,0 +1,40 @@
+$NetBSD: patch-aa,v 1.1.1.1 2002/12/05 21:21:55 jmmv Exp $
+
+--- config.in.orig Tue Nov 13 16:05:11 2001
++++ config.in
+@@ -4,11 +4,13 @@
+ # paths below.
+
+ # In which directory do you want tkpasman to be installed?
+-BINDIR=/usr/local/bin
++BINDIR=@PREFIX@/bin
++
++INSTALL_SCRIPT="@INSTALL_SCRIPT@"
+
+ # Shell to run the build script with (e.g. /bin/bash).
+ #SHELL=/bin/bash
+-SHELL=/bin/sh
++SHELL=@SHELL@
+
+ # The Makefile should find wish8.3 and tclsh8.3. When it fails, enter here
+ # the full path to your wish and tclsh shell.
+@@ -27,12 +29,12 @@ PWDFILE='~/.tkpasman'
+
+ # Build in openssl support (true or false, optional).
+ # (You will have to switch on encryption in the Options menu)
+-USE_OPENSSL=true
++USE_OPENSSL=@USE_OPENSSL@
+
+ # Full pathname of the openssl program (e.g. /usr/local/ssl/bin/openssl)
+ # Only supply this pathname if the build script does not find it on
+ # itself.
+-OPENSSL=
++OPENSSL=@OPENSSL@
+
+ # The preferred algorithms to use. We don't make this a runtime option, to
+ # prevent users from loosing data while switching from one algorithm to
+@@ -45,4 +47,3 @@ ENC="bf|des3|rc2"
+ # ================================================
+ VERSION=2.2
+ PROGNAME=tkpasman
+-OPENSSL_SEARCH_PATH=/usr/ssl/bin:/usr/openssl/bin:/usr/local/ssl/bin:/usr/local/openssl/bin