Date: Mon, 7 Jul 2014 21:23:54 +0000 (UTC) From: Veniamin Gvozdikov <vg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r361132 - in head/security: . kqoauth Message-ID: <201407072123.s67LNsWB014645@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: vg Date: Mon Jul 7 21:23:54 2014 New Revision: 361132 URL: http://svnweb.freebsd.org/changeset/ports/361132 QAT: https://qat.redports.org/buildarchive/r361132/ Log: new port: security/kqoauth kQOAuth is a library written in C++ for Qt that implements the OAuth 1.0 authentication specification RFC 5849 (http://tools.ietf.org/html/rfc5849). Greetings go to Dominik Kapusta for writing the original OAuth library using Qt, QOAuth (http://blog.ayoy.net/2009/6/24/oauth). WWW: http://github.com/kypeli/kQOAuth/ Added: head/security/kqoauth/ head/security/kqoauth/Makefile (contents, props changed) head/security/kqoauth/distinfo (contents, props changed) head/security/kqoauth/pkg-descr (contents, props changed) head/security/kqoauth/pkg-plist (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Mon Jul 7 20:32:06 2014 (r361131) +++ head/security/Makefile Mon Jul 7 21:23:54 2014 (r361132) @@ -239,6 +239,7 @@ SUBDIR += knock SUBDIR += knocker SUBDIR += kpcli + SUBDIR += kqoauth SUBDIR += krb5 SUBDIR += krb5-appl SUBDIR += krb5-maint Added: head/security/kqoauth/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kqoauth/Makefile Mon Jul 7 21:23:54 2014 (r361132) @@ -0,0 +1,29 @@ +# Created by: Veniamin Gvozdikov <vg@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= kqoauth +PORTVERSION= 0.98 +CATEGORIES= security +MASTER_SITES= GH GHC + +MAINTAINER= vg@FreeBSD.org +COMMENT= Implimentation of OAuth 1.0 in C++ for Qt + +LICENSE= LGPL21 + +USES= qmake pkgconfig +USE_QT4= corelib gui linguist_build moc_build qtestlib +USE_LDCONFIG= yes +QMAKE_SOURCE_PATH= ${PORTNAME}.pro + +USE_GITHUB= yes +GH_ACCOUNT= kypeli +GH_PROJECT= kQOAuth + +WRKSRC= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-677339c + +pre-configure: + ${REINPLACE_CMD} -e 's|$${target.path}/pkgconfig|$${INSTALL_PREFIX}/libdata/pkgconfig|g' \ + ${WRKSRC}/src/src.pro + +.include <bsd.port.mk> Added: head/security/kqoauth/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kqoauth/distinfo Mon Jul 7 21:23:54 2014 (r361132) @@ -0,0 +1,2 @@ +SHA256 (kqoauth-0.98.tar.gz) = de2c4a81c80092f8e5b773306f8acb048876e116b66942236b27e439dbd6f78d +SIZE (kqoauth-0.98.tar.gz) = 37061 Added: head/security/kqoauth/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kqoauth/pkg-descr Mon Jul 7 21:23:54 2014 (r361132) @@ -0,0 +1,6 @@ +kQOAuth is a library written in C++ for Qt that implements the OAuth 1.0 +authentication specification RFC 5849 (http://tools.ietf.org/html/rfc5849). +Greetings go to Dominik Kapusta for writing the original OAuth library +using Qt, QOAuth (http://blog.ayoy.net/2009/6/24/oauth). + +WWW: http://github.com/kypeli/kQOAuth/ Added: head/security/kqoauth/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kqoauth/pkg-plist Mon Jul 7 21:23:54 2014 (r361132) @@ -0,0 +1,18 @@ +include/QtKOAuth/QtKOAuth +include/QtKOAuth/kqoauthglobals.h +include/QtKOAuth/kqoauthmanager.h +include/QtKOAuth/kqoauthrequest.h +include/QtKOAuth/kqoauthrequest_1.h +include/QtKOAuth/kqoauthrequest_xauth.h +lib/libkqoauth.prl +lib/libkqoauth.so +lib/libkqoauth.so.0 +lib/libkqoauth.so.0.97 +lib/libkqoauth.so.0.97.0 +%%QT_PREFIX%%/%%QT_MKSPECDIR%%/features/kqoauth.prf +libdata/pkgconfig/kqoauth.pc +@dirrm include/QtKOAuth +@dirrmtry %%QT_PREFIX%%/%%QT_MKSPECDIR%%/features +@dirrmtry %%QT_PREFIX%%/%%QT_MKSPECDIR%% +@dirrmtry %%QT_PREFIX%%/%%QT_DATADIR%% +
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201407072123.s67LNsWB014645>