From owner-svn-ports-all@freebsd.org Fri Dec 30 12:15:20 2016 Return-Path: Delivered-To: svn-ports-all@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 2210CC97217; Fri, 30 Dec 2016 12:15:20 +0000 (UTC) (envelope-from hrs@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 E5B1714AD; Fri, 30 Dec 2016 12:15:19 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uBUCFJcv072488; Fri, 30 Dec 2016 12:15:19 GMT (envelope-from hrs@FreeBSD.org) Received: (from hrs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uBUCFJTW072487; Fri, 30 Dec 2016 12:15:19 GMT (envelope-from hrs@FreeBSD.org) Message-Id: <201612301215.uBUCFJTW072487@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: hrs set sender to hrs@FreeBSD.org using -f From: Hiroki Sato Date: Fri, 30 Dec 2016 12:15:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r429971 - head/net/liboauth X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 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: Fri, 30 Dec 2016 12:15:20 -0000 Author: hrs Date: Fri Dec 30 12:15:18 2016 New Revision: 429971 URL: https://svnweb.freebsd.org/changeset/ports/429971 Log: - Add LICENSE. - USES=ssl instead of USE_OPENSSL. Modified: head/net/liboauth/Makefile Modified: head/net/liboauth/Makefile ============================================================================== --- head/net/liboauth/Makefile Fri Dec 30 12:11:02 2016 (r429970) +++ head/net/liboauth/Makefile Fri Dec 30 12:15:18 2016 (r429971) @@ -2,23 +2,24 @@ PORTNAME= liboauth PORTVERSION= 1.0.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= SF/${PORTNAME} -MAINTAINER= ports@FreeBSD.org +MAINTAINER= hrs@FreeBSD.org COMMENT= C library implementing the OAuth Core standard +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING.MIT + LIB_DEPENDS= libcurl.so:ftp/curl +USES= libtool pkgconfig ssl +USE_LDCONFIG= yes GNU_CONFIGURE= yes MAKE_ARGS= pkgconfigdir="${PREFIX}/libdata/pkgconfig" INSTALL_TARGET= install-strip -USE_OPENSSL= yes -USES= pkgconfig libtool -USE_LDCONFIG= yes - post-patch: @${REINPLACE_CMD} -e '/PC_REQ=/s/ libcrypto//' ${WRKSRC}/configure