summaryrefslogtreecommitdiff
path: root/security/KeePass/Makefile
diff options
context:
space:
mode:
authorwiz <wiz>2012-10-27 22:18:50 +0000
committerwiz <wiz>2012-10-27 22:18:50 +0000
commit72c6e05c230e7f264b8783569537c788a0b55069 (patch)
tree4902109ae3bdf7b40e2fc32b201c8fc383b5aa24 /security/KeePass/Makefile
parentde39e1cf21fd7838cf0523205c9ee4560c6cd385 (diff)
downloadpkgsrc-72c6e05c230e7f264b8783569537c788a0b55069.tar.gz
Import KeePass-2.20.1 as security/KeePass.
Today you need to remember many passwords. You need a password for the Windows network logon, your e-mail account, your website's FTP password, online passwords (like website member account), etc. etc. etc. The list is endless. Also, you should use different passwords for each account. Because if you use only one password everywhere and someone gets this password you have a problem... A serious problem. The thief would have access to your e-mail account, website, etc. Unimaginable. KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. You can put all your passwords in one database, which is locked with one master key or a key file. So you only have to remember one single master password or select the key file to unlock the whole database. The databases are encrypted using the best and most secure encryption algorithms currently known (AES and Twofish).
Diffstat (limited to 'security/KeePass/Makefile')
-rw-r--r--security/KeePass/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/security/KeePass/Makefile b/security/KeePass/Makefile
new file mode 100644
index 00000000000..60011fa5bc0
--- /dev/null
+++ b/security/KeePass/Makefile
@@ -0,0 +1,31 @@
+# $NetBSD: Makefile,v 1.1 2012/10/27 22:18:50 wiz Exp $
+#
+
+DISTNAME= KeePass-2.20.1
+CATEGORIES= security
+MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=keepass/}
+EXTRACT_SUFX= .zip
+
+MAINTAINER= pkgsrc-users@NetBSD.org
+HOMEPAGE= http://keepass.sourceforge.net/
+COMMENT= Free, open source, light-weight and easy-to-use password manager
+LICENSE= gnu-gpl-v2
+
+DEPENDS+= mono>=2.6:../../lang/mono
+
+WRKSRC= ${WRKDIR}
+USE_LANGUAGES= # none
+
+INSTALLATION_DIRS= bin libexec/KeePass/XSL
+
+do-build:
+ ${ECHO} '#!/bin/sh' > ${WRKSRC}/KeePass
+ ${ECHO} "${PREFIX}/bin/mono ${PREFIX}/libexec/KeePass/KeePass.exe "'"$$@"' >> ${WRKSRC}/KeePass
+
+do-install:
+ ${INSTALL_SCRIPT} ${WRKSRC}/KeePass ${DESTDIR}${PREFIX}/bin
+ ${INSTALL_DATA} ${WRKSRC}/*.* ${DESTDIR}${PREFIX}/libexec/KeePass
+ ${INSTALL_DATA} ${WRKSRC}/XSL/* ${DESTDIR}${PREFIX}/libexec/KeePass/XSL
+
+.include "../../graphics/libgdiplus/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"