aboutsummaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorBernard Spil <brnrd@FreeBSD.org>2017-06-10 20:53:28 +0000
committerBernard Spil <brnrd@FreeBSD.org>2017-06-10 20:53:28 +0000
commitc3f637c53cf68b59c966605989417c3c67773615 (patch)
tree03b8d0dd5caf0c53563b65c36d8c6aeb4599a2ae /sysutils
parent15c2eb18e687da20f2236fc01c539840c4745660 (diff)
downloadports-c3f637c53cf68b59c966605989417c3c67773615.tar.gz
ports-c3f637c53cf68b59c966605989417c3c67773615.zip
Notes
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/passwordsafe/Makefile2
-rw-r--r--sysutils/passwordsafe/distinfo6
-rw-r--r--sysutils/passwordsafe/files/patch-help_Makefile23
-rw-r--r--sysutils/passwordsafe/files/patch-src_os_unix_dir.cpp31
4 files changed, 4 insertions, 58 deletions
diff --git a/sysutils/passwordsafe/Makefile b/sysutils/passwordsafe/Makefile
index 8296df60ec5c..f7751ce52301 100644
--- a/sysutils/passwordsafe/Makefile
+++ b/sysutils/passwordsafe/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= passwordsafe
-DISTVERSION= 1.01BETA
+DISTVERSION= 1.02BETA
CATEGORIES= sysutils
MAINTAINER= brnrd@FreeBSD.org
diff --git a/sysutils/passwordsafe/distinfo b/sysutils/passwordsafe/distinfo
index 5fbcc5f0e00e..12e971078d2b 100644
--- a/sysutils/passwordsafe/distinfo
+++ b/sysutils/passwordsafe/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1486296870
-SHA256 (pwsafe-pwsafe-1.01BETA_GH0.tar.gz) = dc1e7e012009309f57a8611adad9ec62fdafe5b326f66dd0cefe2b5988ee52aa
-SIZE (pwsafe-pwsafe-1.01BETA_GH0.tar.gz) = 13984971
+TIMESTAMP = 1497127333
+SHA256 (pwsafe-pwsafe-1.02BETA_GH0.tar.gz) = 78d5970e8de2b28584ebdf6a319dd484e733afea06d1b3d15ac80bf454b39ccc
+SIZE (pwsafe-pwsafe-1.02BETA_GH0.tar.gz) = 14067763
diff --git a/sysutils/passwordsafe/files/patch-help_Makefile b/sysutils/passwordsafe/files/patch-help_Makefile
deleted file mode 100644
index a36a914b6dcb..000000000000
--- a/sysutils/passwordsafe/files/patch-help_Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-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.orig 2016-12-21 20:10:25 UTC
-+++ help/Makefile
-@@ -7,6 +7,8 @@ include Makefile.windows
- else ifeq ($(findstring Darwin, $(shell uname -s)), Darwin)
- #include Makefile.macos
- $(error "MacOS unsupported (yet)")
-+else ifeq ($(findstring FreeBSD, $(shell uname -s)), FreeBSD)
-+include Makefile.freebsd
- else
- $(error "Unsupported OS or unable to determine OS")
- endif
diff --git a/sysutils/passwordsafe/files/patch-src_os_unix_dir.cpp b/sysutils/passwordsafe/files/patch-src_os_unix_dir.cpp
deleted file mode 100644
index 57e6a9ab03d1..000000000000
--- a/sysutils/passwordsafe/files/patch-src_os_unix_dir.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-From 9cdf2cd3ad5de5034d367b8283c071ad90ad2055 Mon Sep 17 00:00:00 2001
-From: Bernard Spil <brnrd@FreeBSD.org>
-Date: Sun, 5 Feb 2017 15:36:48 +0100
-Subject: [PATCH] Obey hier(8) on FreeBSD
-
-Signed-off-by: Bernard Spil <brnrd@FreeBSD.org>
----
- src/os/unix/dir.cpp | 8 ++++++++
- 1 file changed, 8 insertions(+)
-
---- src/os/unix/dir.cpp.orig 2016-12-21 20:10:25 UTC
-+++ src/os/unix/dir.cpp
-@@ -173,10 +173,18 @@ stringT pws_os::getsafedir(void)
-
- stringT pws_os::getxmldir(void)
- {
-+#ifdef __FreeBSD__
-+ return _S("/usr/local/share/pwsafe/xml/");
-+#else
- return _S("/usr/share/pwsafe/xml/");
-+#endif
- }
-
- stringT pws_os::gethelpdir(void)
- {
-+#ifdef __FreeBSD__
-+ return _S("/usr/local/share/doc/passwordsafe/help/");
-+#else
- return _S("/usr/share/doc/passwordsafe/help/");
-+#endif
- }