mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-02 01:20:54 +00:00
55fbdf9f62
PR: ports/87358 Submitted by: maintainer, Kevin Dorne <kevin@catalyst.net.nz>
35 lines
691 B
Makefile
35 lines
691 B
Makefile
# New ports collection makefile for: pwsafe
|
|
# Date created: 29 Mars 2004
|
|
# Whom: donnex
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pwsafe
|
|
PORTVERSION= 0.2.0
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://nsd.dyndns.org/pwsafe/releases/
|
|
|
|
MAINTAINER= donnex@donnex.net
|
|
COMMENT= Cmdline program that manages encrypted password databases
|
|
|
|
OPTIONS= SETUID "Install setuid pwsafe binary" off
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
MAN1= pwsafe.1
|
|
PLIST_FILES= bin/pwsafe
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pwsafe ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/pwsafe.1 ${PREFIX}/man/man1
|
|
.if defined(WITH_SETUID)
|
|
${CHMOD} u+s ${PREFIX}/bin/pwsafe
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|
|
|