aboutsummaryrefslogtreecommitdiff
path: root/security/spass-qt5
diff options
context:
space:
mode:
authorKai Knoblich <kai@FreeBSD.org>2019-09-02 11:52:44 +0000
committerKai Knoblich <kai@FreeBSD.org>2019-09-02 11:52:44 +0000
commit086c9974374b5fca352ba02d90e20f5648000e44 (patch)
tree2dfb54b39b01b5dd6bfa5fbeac4fe39332df5e2b /security/spass-qt5
parentf0aa0449dbf5189769c0cde4bb9ab19eaa32e9b5 (diff)
downloadports-086c9974374b5fca352ba02d90e20f5648000e44.tar.gz
ports-086c9974374b5fca352ba02d90e20f5648000e44.zip
security/spass{-qt5}: Update to 3.2
* Introduce security/spass-qt5 as a slave port that contains only the GUI version which was added with the 3.1 release. * Use the latest commit d38d173 to make use of the WITH_GUI boolean flag that enables the GUI/CLI-only build. Changelog since 3.0: * Minor tweaks for the CLI version * Additional Qt5 GUI version PR: 238621 Submitted by: Thomas Merkel <tm@NetBSD.org> (initial patch) Reviewed by: mat (portmgr, to determine if FLAVORS can be used or not) Differential Revision: https://reviews.freebsd.org/D21084
Notes
Notes: svn path=/head/; revision=510779
Diffstat (limited to 'security/spass-qt5')
-rw-r--r--security/spass-qt5/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/security/spass-qt5/Makefile b/security/spass-qt5/Makefile
new file mode 100644
index 000000000000..a4dd22a9ce46
--- /dev/null
+++ b/security/spass-qt5/Makefile
@@ -0,0 +1,18 @@
+# $FreeBSD$
+
+PKGNAMESUFFIX= -qt5
+
+COMMENT= Secure password generator with a true RNG (Qt5 GUI)
+
+USES= qmake:no_env qt:5
+USE_QT= buildtools_build core gui widgets
+
+MASTERDIR= ${.CURDIR}/../spass
+
+PLIST_FILES= bin/spass-qt
+
+# Delete the CLI-only binary which is already provided via security/spass
+post-install:
+ ${RM} ${STAGEDIR}${PREFIX}/bin/spass
+
+.include "${MASTERDIR}/Makefile"