Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Oct 2016 20:12:32 +0000 (UTC)
From:      Ruslan Makhmatkhanov <rm@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r423698 - in head/net: . pecl-oauth2
Message-ID:  <201610102012.u9AKCW6e050507@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rm
Date: Mon Oct 10 20:12:31 2016
New Revision: 423698
URL: https://svnweb.freebsd.org/changeset/ports/423698

Log:
  pecl-oauth is a php interface to the oauth protocol.
  Oauth is an authorization protocol built on top of
  HTTP which allows applications to securely access
  data without having to store usernames and passwords.
  
  WWW: http://pecl.php.net/package/oauth/
  
  PR:		212773
  Submitted by:	dbaio@bsd.com.br

Added:
  head/net/pecl-oauth2/
  head/net/pecl-oauth2/Makefile   (contents, props changed)
  head/net/pecl-oauth2/distinfo   (contents, props changed)
  head/net/pecl-oauth2/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Mon Oct 10 20:11:28 2016	(r423697)
+++ head/net/Makefile	Mon Oct 10 20:12:31 2016	(r423698)
@@ -896,6 +896,7 @@
     SUBDIR += pecl-ip2location
     SUBDIR += pecl-mosquitto
     SUBDIR += pecl-oauth
+    SUBDIR += pecl-oauth2
     SUBDIR += pecl-radius
     SUBDIR += pecl-smbclient
     SUBDIR += pecl-yaz

Added: head/net/pecl-oauth2/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/pecl-oauth2/Makefile	Mon Oct 10 20:12:31 2016	(r423698)
@@ -0,0 +1,29 @@
+# $FreeBSD$
+
+PORTNAME=	oauth
+PORTVERSION=	2.0.2
+CATEGORIES=	net pear
+MASTER_SITES=	http://pecl.php.net/get/
+PKGNAMEPREFIX=	pecl-
+PKGNAMESUFFIX=	2
+DIST_SUBDIR=	PECL
+
+MAINTAINER=	dbaio@bsd.com.br
+COMMENT=	Php interface to the OAuth Protocol
+
+LICENSE=	BSD3CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libcurl.so:ftp/curl
+
+PORTSCOUT=	limit:^2.*
+
+CFLAGS+=	-I${LOCALBASE}/include
+LDFLAGS+=	-L${LOCALBASE}/lib
+CONFIGURE_ARGS+=	CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}"
+
+USES=		php:ext tar:tgz
+IGNORE_WITH_PHP=	55 56
+CONFLICTS=	pecl-oauth-1*
+
+.include <bsd.port.mk>

Added: head/net/pecl-oauth2/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/pecl-oauth2/distinfo	Mon Oct 10 20:12:31 2016	(r423698)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1474130147
+SHA256 (PECL/oauth-2.0.2.tgz) = 87ce1a5d585f439f0ead2683f2f7dca76d538df9143da681978356b5e1c6e8e8
+SIZE (PECL/oauth-2.0.2.tgz) = 49115

Added: head/net/pecl-oauth2/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/pecl-oauth2/pkg-descr	Mon Oct 10 20:12:31 2016	(r423698)
@@ -0,0 +1,6 @@
+pecl-oauth is a php interface to the oauth protocol.
+Oauth is an authorization protocol built on top of
+HTTP which allows applications to securely access
+data without having to store usernames and passwords.
+
+WWW: http://pecl.php.net/package/oauth/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610102012.u9AKCW6e050507>