From owner-svn-ports-all@FreeBSD.ORG Wed Apr 17 19:44:32 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1CB1EEE4; Wed, 17 Apr 2013 19:44:32 +0000 (UTC) (envelope-from makc@freebsd.org) Received: from mail.issp.ac.ru (mail.issp.ac.ru [77.236.34.3]) by mx1.freebsd.org (Postfix) with ESMTP id 54C6D1F3; Wed, 17 Apr 2013 19:44:30 +0000 (UTC) Received: from mercury.ph.man.ac.uk [130.88.75.175:38752] (HELO/EHLO mercury.ph.man.ac.uk, authenticated with LOGIN) by mail.issp.ac.ru with ESMTP/inet id r3HJiSgc075891 (using TLSv1/SSLv3, with cipher DHE-RSA-AES256-SHA (256 bits), verified NO) Wed, 17 Apr 2013 23:44:29 +0400 (MSK) From: Max Brazhnikov To: Jason Helfman Subject: Re: svn commit: r315930 - in head/security: . qtkeychain qtkeychain/files Date: Wed, 17 Apr 2013 19:46:02 +0000 Message-ID: <1398299.9HVlrbp22m@mercury.ph.man.ac.uk> User-Agent: KMail/4.10.2 (FreeBSD/9.1-STABLE; KDE/4.10.2; amd64; ; ) In-Reply-To: <201304170606.r3H66PaE072875@svn.freebsd.org> References: <201304170606.r3H66PaE072875@svn.freebsd.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="UTF-8" Cc: svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, 6yearold@gmail.com, ports-committers@freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 17 Apr 2013 19:44:32 -0000 Hi, On Wed, 17 Apr 2013 06:06:25 +0000Wed Apr 17 06:06:24 2013 Jason Helfman wrote: > Author: jgh > Date: Wed Apr 17 06:06:24 2013 > New Revision: 315930 > URL: http://svnweb.freebsd.org/changeset/ports/315930 > > Log: > - add new port: security/qtkeychain > > QtKeychain is a Qt API to store passwords and other secret data securely.How > the data is stored depends on the platform. > For Linux/Unix, KWallet (via D-Bus) is used. Support for the GNOME Keyring > via freedesktop.org's Secret Storage D-Bus specification is planned > but not yet implemented. > > WWW: https://github.com/frankosterfeld/qtkeychain > > PR: 177634 > Submitted by: 6yearold@gmail.com > > Feature safe: yes > > Added: > head/security/qtkeychain/ > head/security/qtkeychain/Makefile (contents, props changed) > head/security/qtkeychain/distinfo (contents, props changed) > head/security/qtkeychain/files/ > head/security/qtkeychain/files/patch-auto_ptr.h (contents, props changed) > head/security/qtkeychain/pkg-descr (contents, props changed) > head/security/qtkeychain/pkg-plist (contents, props changed) > Modified: > head/security/Makefile > > Modified: head/security/Makefile > ============================================================================== > --- head/security/Makefile Wed Apr 17 06:02:48 2013 (r315929) > +++ head/security/Makefile Wed Apr 17 06:06:24 2013 (r315930) > @@ -801,6 +801,7 @@ > SUBDIR += qca-ossl > SUBDIR += qca-tls > SUBDIR += qtfw > + SUBDIR += qtkeychain > SUBDIR += quantis > SUBDIR += quantis-kmod > SUBDIR += racoon2 > > Added: head/security/qtkeychain/Makefile > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/security/qtkeychain/Makefile Wed Apr 17 06:06:24 2013 (r315930) > @@ -0,0 +1,24 @@ > +# $FreeBSD$ > + > +PORTNAME= qtkeychain > +PORTVERSION= 0.1.0 > +CATEGORIES= security > + > +MAINTAINER= 6yearold@gmail.com > +COMMENT= Platform independent Qt API for storing passwords > + > +LICENSE= BSD > +LICENSE_FILE= ${WRKSRC}/COPYING > + > +USE_GITHUB= yes > +GH_ACCOUNT= frankosterfeld > +GH_TAGNAME= v${PORTVERSION} > +GH_COMMIT= bb32e45 > + > +USES= cmake > +USE_QT4= corelib dbus moc_build qmake_build rcc_build > +USE_LDCONFIG= yes > + > +MAKE_JOBS_SAFE= yes > + > +.include > > Added: head/security/qtkeychain/distinfo > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/security/qtkeychain/distinfo Wed Apr 17 06:06:24 2013 (r315930) > @@ -0,0 +1,2 @@ > +SHA256 (qtkeychain-0.1.0.tar.gz) = cf4fa0e9063d6df54c191e361566f5b6e5d3a5867fc0d9ab96954af393c939ef > +SIZE (qtkeychain-0.1.0.tar.gz) = 12834 > > Added: head/security/qtkeychain/files/patch-auto_ptr.h > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/security/qtkeychain/files/patch-auto_ptr.h Wed Apr 17 06:06:24 2013 (r315930) > @@ -0,0 +1,11 @@ > +--- _keychain_dbus.cpp 2013-03-25 20:32:44.801564594 +0400 > ++++ keychain_dbus.cpp 2013-03-25 20:32:49.811561714 +0400 > +@@ -10,7 +10,7 @@ > + > + #include > + > +-#include > ++#include > + > + using namespace QKeychain; > + > > Added: head/security/qtkeychain/pkg-descr > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/security/qtkeychain/pkg-descr Wed Apr 17 06:06:24 2013 (r315930) > @@ -0,0 +1,7 @@ > +QtKeychain is a Qt API to store passwords and other secret data securely.How > +the data is stored depends on the platform. > +For Linux/Unix, KWallet (via D-Bus) is used. Support for the GNOME Keyring > +via freedesktop.org's Secret Storage D-Bus specification is planned > +but not yet implemented. > + > +WWW: https://github.com/frankosterfeld/qtkeychain > > Added: head/security/qtkeychain/pkg-plist > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/security/qtkeychain/pkg-plist Wed Apr 17 06:06:24 2013 (r315930) > @@ -0,0 +1,12 @@ > +include/qtkeychain/keychain.h > +include/qtkeychain/qkeychain_export.h > +lib/cmake/QtKeychain/QtKeychainConfig.cmake > +lib/cmake/QtKeychain/QtKeychainConfigVersion.cmake > +lib/cmake/QtKeychain/QtKeychainLibraryDepends-release.cmake It should be 'lib/cmake/QtKeychain/QtKeychainLibraryDepends-%%CMAKE_BUILD_TYPE%%.cmake' http://www.freebsd.org/doc/en/books/porters-handbook/building.html#using-cmake Cheers, Max