From owner-svn-ports-head@freebsd.org Tue Oct 4 14:32:18 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0FD06AF4912; Tue, 4 Oct 2016 14:32:18 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id DF33D982; Tue, 4 Oct 2016 14:32:17 +0000 (UTC) (envelope-from woodsb02@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u94EWHjl003144; Tue, 4 Oct 2016 14:32:17 GMT (envelope-from woodsb02@FreeBSD.org) Received: (from woodsb02@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u94EWG9P003139; Tue, 4 Oct 2016 14:32:16 GMT (envelope-from woodsb02@FreeBSD.org) Message-Id: <201610041432.u94EWG9P003139@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: woodsb02 set sender to woodsb02@FreeBSD.org using -f From: Ben Woods Date: Tue, 4 Oct 2016 14:32:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r423262 - in head/security: . kdbx-viewer X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Oct 2016 14:32:18 -0000 Author: woodsb02 Date: Tue Oct 4 14:32:16 2016 New Revision: 423262 URL: https://svnweb.freebsd.org/changeset/ports/423262 Log: Add new port security/kdbx-viewer kdbx-viewer provides an ncurses GUI and command-line tool for KeePass2 Database files. Reviewed by: mat (mentor) Approved by: adamw (mentor) Differential Revision: https://reviews.freebsd.org/D8033 Added: head/security/kdbx-viewer/ head/security/kdbx-viewer/Makefile (contents, props changed) head/security/kdbx-viewer/distinfo (contents, props changed) head/security/kdbx-viewer/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Tue Oct 4 13:30:22 2016 (r423261) +++ head/security/Makefile Tue Oct 4 14:32:16 2016 (r423262) @@ -273,6 +273,7 @@ SUBDIR += keychain SUBDIR += keynote SUBDIR += keyprint + SUBDIR += kdbx-viewer SUBDIR += kgpg-kde4 SUBDIR += knock SUBDIR += knocker Added: head/security/kdbx-viewer/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kdbx-viewer/Makefile Tue Oct 4 14:32:16 2016 (r423262) @@ -0,0 +1,35 @@ +# Created by: Ben Woods +# $FreeBSD$ + +PORTNAME= kdbx-viewer +PORTVERSION= 0.0.1 +DISTVERSIONPREFIX=v +CATEGORIES= security + +MAINTAINER= woodsb02@FreeBSD.org +COMMENT= ncurses GUI and command-line tool for KeePass2 Database files + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libexpat.so:textproc/expat2 \ + libgcrypt.so:security/libgcrypt \ + libstfl.so:devel/stfl + +USE_GITHUB= yes +GH_ACCOUNT= max-weller + +USES= ncurses +CFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib +PLIST_FILES= bin/kdbxviewer +ALL_TARGET= + +post-patch: + ${REINPLACE_CMD} -e 's|gcc|${CC} ${CFLAGS} ${LDFLAGS}|' ${WRKSRC}/Makefile + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/bin/kdbxviewer ${STAGEDIR}${PREFIX}/bin/ + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/kdbxviewer + +.include Added: head/security/kdbx-viewer/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kdbx-viewer/distinfo Tue Oct 4 14:32:16 2016 (r423262) @@ -0,0 +1,3 @@ +TIMESTAMP = 1475588279 +SHA256 (max-weller-kdbx-viewer-v0.0.1_GH0.tar.gz) = 9898385de015dc24fbe7137683c42a171438354312d05aec5a6d9e50ab6ebb9b +SIZE (max-weller-kdbx-viewer-v0.0.1_GH0.tar.gz) = 142777 Added: head/security/kdbx-viewer/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kdbx-viewer/pkg-descr Tue Oct 4 14:32:16 2016 (r423262) @@ -0,0 +1,10 @@ +Command-line tool written in C for KeePass2 Database files (kdbx). +It works completely read-only at the moment. + +Features: +- ncurses GUI to browse and view password database +- Dump raw, decrypted XML content with obscured passwords +- Display tree structure with de-obscured (=readable) passwords +- Get tab-separated (TSV/CSV) password list + +WWW: https://max-weller.github.io/kdbx-viewer/