aboutsummaryrefslogtreecommitdiff
path: root/sysutils/pwsafe
diff options
context:
space:
mode:
authorAlexey Dokuchaev <danfe@FreeBSD.org>2021-09-01 11:20:36 +0000
committerAlexey Dokuchaev <danfe@FreeBSD.org>2021-09-01 11:20:37 +0000
commite7ae31e2b9f1e56082369105f0c224a41a5de1e6 (patch)
tree179568547169fbf8cb711ccea77ca7454bc98502 /sysutils/pwsafe
parent5691973dff7b6ac0eb9910821fc643a18160524a (diff)
downloadports-e7ae31e2b9f1e56082369105f0c224a41a5de1e6.tar.gz
ports-e7ae31e2b9f1e56082369105f0c224a41a5de1e6.zip
sysutils/pwsafe: the port had been improved (+)
- Expand creator name to avoid confusion (single words are typically reserved for FreeBSD committers) - Reword COMMENT to avoid contraction and improve readability - Adjust LICENSE (it is "GPLv2 or later" in the source code) - Simplify X11 disabling logic and convert to option helpers - Drop redundant (inferred) GH_PROJECT knob while here
Diffstat (limited to 'sysutils/pwsafe')
-rw-r--r--sysutils/pwsafe/Makefile32
1 files changed, 10 insertions, 22 deletions
diff --git a/sysutils/pwsafe/Makefile b/sysutils/pwsafe/Makefile
index e7bcc82e7472..d84c11a9e963 100644
--- a/sysutils/pwsafe/Makefile
+++ b/sysutils/pwsafe/Makefile
@@ -1,4 +1,4 @@
-# Created by: donnex
+# Created by: Daniel Johansson <donnex@donnex.net>
PORTNAME= pwsafe
DISTVERSION= 0.2.0-155
@@ -6,44 +6,32 @@ DISTVERSIONSUFFIX= -g1dbcfd0
CATEGORIES= sysutils
MAINTAINER= m.ne@gmx.net
-COMMENT= Cmdline program that manages encrypted password databases
+COMMENT= Command-line encrypted password database manager
-LICENSE= GPLv2
+LICENSE= GPLv2+
USES= autoreconf gmake ncurses readline ssl
+GNU_CONFIGURE= yes
+CONFIGURE_ENV= ac_cv_header_curses_h=yes
USE_GITHUB= yes
GH_ACCOUNT= nsd20463
-GH_PROJECT= pwsafe
GH_TAGNAME= 1dbcfd0
-GNU_CONFIGURE= yes
-CONFIGURE_ENV+= ac_cv_header_curses_h=yes
-
PLIST_FILES= bin/pwsafe \
man/man1/pwsafe.1.gz
OPTIONS_DEFINE= SETUID X11
-
SETUID_DESC= Install setuid pwsafe binary
-.include <bsd.port.options.mk>
-
-.if ${PORT_OPTIONS:MX11}
-CONFIGURE_ARGS= --with-x
-USES+= xorg
-USE_XORG= ice sm x11 xmu
-.else
-CONFIGURE_ARGS= ac_cv_have_x="have_x=no" \
- ac_cv_lib_ICE_IceConnectionNumber=no \
- ac_cv_lib_X11_XOpenDisplay=no \
- ac_cv_lib_Xmu_XmuInternAtom=no
-.endif
+X11_USES= xorg
+X11_USE= XORG=ice,sm,x11,xmu
+X11_CONFIGURE_OFF= --without-x
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pwsafe ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/pwsafe.1 ${STAGEDIR}${MANPREFIX}/man/man1
-.if ${PORT_OPTIONS:MSETUID}
+
+post-install-SETUID-on:
${CHMOD} u+s ${STAGEDIR}${PREFIX}/bin/pwsafe
-.endif
.include <bsd.port.mk>