svn commit: r316020 - in head/security: . kc

Carlo Strub cs at FreeBSD.org
Thu Apr 18 06:18:36 UTC 2013


Author: cs
Date: Thu Apr 18 06:18:35 2013
New Revision: 316020
URL: http://svnweb.freebsd.org/changeset/ports/316020

Log:
  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 at ecentrum.hu>
  Feature safe:	yes

Added:
  head/security/kc/
  head/security/kc/Makefile   (contents, props changed)
  head/security/kc/distinfo   (contents, props changed)
  head/security/kc/pkg-descr   (contents, props changed)
  head/security/kc/pkg-message   (contents, props changed)
Modified:
  head/security/Makefile

Modified: head/security/Makefile
==============================================================================
--- head/security/Makefile	Thu Apr 18 06:09:24 2013	(r316019)
+++ head/security/Makefile	Thu Apr 18 06:18:35 2013	(r316020)
@@ -234,6 +234,7 @@
     SUBDIR += isnprober
     SUBDIR += jbrofuzz
     SUBDIR += john
+    SUBDIR += kc
     SUBDIR += kedpm
     SUBDIR += keepassx
     SUBDIR += keychain

Added: head/security/kc/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/kc/Makefile	Thu Apr 18 06:18:35 2013	(r316020)
@@ -0,0 +1,31 @@
+# Created by: LEVAI Daniel <leva at ecentrum.hu>
+# $FreeBSD$
+
+PORTNAME=	kc
+PORTVERSION=	2.3.0
+CATEGORIES=	security
+MASTER_SITES=	http://keychain.googlecode.com/files/
+
+MAINTAINER=	leva at 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>

Added: head/security/kc/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/kc/distinfo	Thu Apr 18 06:18:35 2013	(r316020)
@@ -0,0 +1,2 @@
+SHA256 (kc-2.3.0.tar.gz) = 48da7dabc4da317ec00902cdd811b0b04008923a18b2f2a21948c0410356b2ae
+SIZE (kc-2.3.0.tar.gz) = 43625

Added: head/security/kc/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/kc/pkg-descr	Thu Apr 18 06:18:35 2013	(r316020)
@@ -0,0 +1,4 @@
+Console based password storing application using an encrypted XML
+document as its database.
+
+WWW: http://keychain.googlecode.com

Added: head/security/kc/pkg-message
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/security/kc/pkg-message	Thu Apr 18 06:18:35 2013	(r316020)
@@ -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/


More information about the svn-ports-all mailing list