1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00
freebsd-ports/sysutils/pwsafe/Makefile
2014-12-10 22:29:14 +00:00

41 lines
936 B
Makefile

# Created by: donnex
# $FreeBSD$
PORTNAME= pwsafe
PORTVERSION= 0.2.0
PORTREVISION= 2
CATEGORIES= sysutils
MASTER_SITES= http://nsd.dyndns.org/pwsafe/releases/
MAINTAINER= ports@FreeBSD.org
COMMENT= Cmdline program that manages encrypted password databases
OPTIONS_DEFINE= SETUID X11
SETUID_DESC= Install setuid pwsafe binary
USES= gmake readline
GNU_CONFIGURE= yes
PLIST_FILES= bin/pwsafe man/man1/pwsafe.1.gz
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MX11}
CONFIGURE_ARGS= --with-x
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
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pwsafe ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/pwsafe.1 ${STAGEDIR}${MANPREFIX}/man/man1
.if ${PORT_OPTIONS:MSETUID}
${CHMOD} u+s ${STAGEDIR}${PREFIX}/bin/pwsafe
.endif
.include <bsd.port.mk>