diff options
author | cs <cs@FreeBSD.org> | 2013-04-18 14:18:35 +0800 |
---|---|---|
committer | cs <cs@FreeBSD.org> | 2013-04-18 14:18:35 +0800 |
commit | 2c5bc05618c68f9630171dc337caafa0ef218a14 (patch) | |
tree | 4c7e25fbc3267f4836ed7b8881dd7afc57302055 /security/kc | |
parent | 361e464941faebe7531a6213c1a7e528f0f499dd (diff) | |
download | freebsd-ports-gnome-2c5bc05618c68f9630171dc337caafa0ef218a14.tar.gz freebsd-ports-gnome-2c5bc05618c68f9630171dc337caafa0ef218a14.tar.zst freebsd-ports-gnome-2c5bc05618c68f9630171dc337caafa0ef218a14.zip |
Console based password storing application using an encrypted XML
document as its database.
WWW: http://keychain.googlecode.com
PR: ports/177191
Submitted by: LEVAI Daniel <leva@ecentrum.hu>
Feature safe: yes
Diffstat (limited to 'security/kc')
-rw-r--r-- | security/kc/Makefile | 31 | ||||
-rw-r--r-- | security/kc/distinfo | 2 | ||||
-rw-r--r-- | security/kc/pkg-descr | 4 | ||||
-rw-r--r-- | security/kc/pkg-message | 3 |
4 files changed, 40 insertions, 0 deletions
diff --git a/security/kc/Makefile b/security/kc/Makefile new file mode 100644 index 000000000000..36209fcd12b0 --- /dev/null +++ b/security/kc/Makefile @@ -0,0 +1,31 @@ +# Created by: LEVAI Daniel <leva@ecentrum.hu> +# $FreeBSD$ + +PORTNAME= kc +PORTVERSION= 2.3.0 +CATEGORIES= security +MASTER_SITES= http://keychain.googlecode.com/files/ + +MAINTAINER= leva@ecentrum.hu +COMMENT= Console based password storing application + +LICENSE= BSD + +LIB_DEPENDS= xml2:${PORTSDIR}/textproc/libxml2 \ + pcre:${PORTSDIR}/devel/pcre +RUN_DEPENDS= p5-HTML-Parser>=0:${PORTSDIR}/www/p5-HTML-Parser + +MAN1= kc.1 +MANCOMPRESSED= yes + +PLIST_DIRS= share/kc +PLIST_FILES= bin/kc \ + share/kc/pwsafe_to_kc.pl + +MAKE_ENV+= HAVE_PCRE=yes + +post-install: + ${INSTALL} -d ${PREFIX}/share/kc + ${INSTALL} ${WRKSRC}/pwsafe_to_kc.pl ${PREFIX}/share/kc/ + +.include <bsd.port.mk> diff --git a/security/kc/distinfo b/security/kc/distinfo new file mode 100644 index 000000000000..f020b4780163 --- /dev/null +++ b/security/kc/distinfo @@ -0,0 +1,2 @@ +SHA256 (kc-2.3.0.tar.gz) = 48da7dabc4da317ec00902cdd811b0b04008923a18b2f2a21948c0410356b2ae +SIZE (kc-2.3.0.tar.gz) = 43625 diff --git a/security/kc/pkg-descr b/security/kc/pkg-descr new file mode 100644 index 000000000000..7e6b95ce1c40 --- /dev/null +++ b/security/kc/pkg-descr @@ -0,0 +1,4 @@ +Console based password storing application using an encrypted XML +document as its database. + +WWW: http://keychain.googlecode.com diff --git a/security/kc/pkg-message b/security/kc/pkg-message new file mode 100644 index 000000000000..5e62997f1017 --- /dev/null +++ b/security/kc/pkg-message @@ -0,0 +1,3 @@ +kc comes with a tiny and simple utility which can convert an exported pwsafe +database to a kc compatible XML database (that can be imported to it later). +It is installed under PREFIX/share/kc/ |