c22052f6b7
maintains compatibility with Password Safe files. MyPasswordSafe has the following features: * Safes are encrypted when they are stored to disk. * Passwords never have to be seen, because they are copied to the clipboard. * Random passwords can be generated. * Window size, position, and column widths are remembered. * Passwords remain encrypted until they need to be decrypted at the dialog and file levels. * A safe can be made active so it will always be opened when MyPasswordSafe starts. * Supports Unicode in the safes. * Languages supported: English and French. WWW: http://www.semanticgap.com/myps/
33 lines
835 B
Makefile
33 lines
835 B
Makefile
# New ports collection makefile for: mypasswordsafe
|
|
# Date created: 2006-11-26
|
|
# Whom: alepulver
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= MyPasswordSafe
|
|
PORTVERSION= 20060326
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.semanticgap.com/myps/release/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= alepulver@FreeBSD.org
|
|
COMMENT= Easy-to-use password manager compatible with Password Safe
|
|
|
|
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
|
|
|
|
USE_GMAKE= yes
|
|
USE_KDELIBS_VER=3
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/.src//}
|
|
MAKE_ENV= QTDIR="${X11BASE}" \
|
|
QMAKESPEC="${LOCALBASE}/share/qt/mkspecs/freebsd-g++"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -Ee 's|(USER=)\$$\(USER\)|\1$$(shell whoami)|' \
|
|
${WRKSRC}/${MAKEFILE}
|
|
.if defined(NOPORTDOCS)
|
|
@${REINPLACE_CMD} -e '63,64d; 66,67d' ${WRKSRC}/${MAKEFILE}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|