summaryrefslogtreecommitdiff
path: root/sysutils/passwordsafe/files/patch-help_Makefile.freebsd
diff options
context:
space:
mode:
authorBernard Spil <brnrd@FreeBSD.org>2017-03-12 07:51:37 +0000
committerBernard Spil <brnrd@FreeBSD.org>2017-03-12 07:51:37 +0000
commita903fbfd2c4404f6a53f14c84139c396b2f3c338 (patch)
tree784c2aa0881b043c170558b0943c2fd40fe46f40 /sysutils/passwordsafe/files/patch-help_Makefile.freebsd
parentUpdate devel/etcd3 to version 3.1.3. (diff)
sysutils/passwordsafe: new port
- PasswordSafe (pwsafe) is a password manager with a secure twofish encrypted database file Sponsored by: AsiaBSDCon 2017 Differential Revision: https://reviews.freebsd.org/D9470
Notes
Notes: svn path=/head/; revision=435976
Diffstat (limited to 'sysutils/passwordsafe/files/patch-help_Makefile.freebsd')
-rw-r--r--sysutils/passwordsafe/files/patch-help_Makefile.freebsd36
1 files changed, 36 insertions, 0 deletions
diff --git a/sysutils/passwordsafe/files/patch-help_Makefile.freebsd b/sysutils/passwordsafe/files/patch-help_Makefile.freebsd
new file mode 100644
index 000000000000..4855ff016a0d
--- /dev/null
+++ b/sysutils/passwordsafe/files/patch-help_Makefile.freebsd
@@ -0,0 +1,36 @@
+From fad7654fc8f709712211700d3ad02272dd2e6963 Mon Sep 17 00:00:00 2001
+From: Bernard Spil <brnrd@FreeBSD.org>
+Date: Sun, 5 Feb 2017 15:35:35 +0100
+Subject: [PATCH] Fix helpfile building on FreeBSD
+
+Signed-off-by: Bernard Spil <brnrd@FreeBSD.org>
+---
+ help/Makefile | 2 ++
+ help/Makefile.freebsd | 21 +++++++++++++++++++++
+ 2 files changed, 23 insertions(+)
+ create mode 100644 help/Makefile.freebsd
+
+--- help/Makefile.freebsd.orig 2017-02-05 14:51:25 UTC
++++ help/Makefile.freebsd
+@@ -0,0 +1,21 @@
++BASEDIRNAME=pwsafe
++LANGS=RU DE ES FR ZH PL
++
++ZIP = /usr/local/bin/zip
++
++all: default $(LANGS)
++
++default:
++ @cd default ; $(ZIP) -Xqr ../helpEN ./*
++
++$(LANGS):
++ @cd $(BASEDIRNAME)$@ ; $(ZIP) -Xqr ../help$@ ./*
++
++clean:
++ $(RM) *.zip
++
++.PHONY: all clean default $(LANGS)
++
++# Local variables:
++# mode: makefile
++# End: