From owner-svn-ports-all@FreeBSD.ORG Sat Jul 5 19:57:33 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 75F14AF6; Sat, 5 Jul 2014 19:57:33 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::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 48B482850; Sat, 5 Jul 2014 19:57:33 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s65JvXhc039279; Sat, 5 Jul 2014 19:57:33 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s65JvWBK039277; Sat, 5 Jul 2014 19:57:32 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201407051957.s65JvWBK039277@svn.freebsd.org> From: Tijl Coosemans Date: Sat, 5 Jul 2014 19:57:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r360815 - in head/security: pam_yubico ykclient 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.18 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: Sat, 05 Jul 2014 19:57:33 -0000 Author: tijl Date: Sat Jul 5 19:57:32 2014 New Revision: 360815 URL: http://svnweb.freebsd.org/changeset/ports/360815 QAT: https://qat.redports.org/buildarchive/r360815/ Log: - Add USES=libtool to security/ykclient and bump dependent ports - Use MAKE_CMD Modified: head/security/pam_yubico/Makefile head/security/ykclient/Makefile Modified: head/security/pam_yubico/Makefile ============================================================================== --- head/security/pam_yubico/Makefile Sat Jul 5 19:54:21 2014 (r360814) +++ head/security/pam_yubico/Makefile Sat Jul 5 19:57:32 2014 (r360815) @@ -2,6 +2,7 @@ PORTNAME= pam_yubico PORTVERSION= 2.16 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://opensource.yubico.com/yubico-pam/releases/ Modified: head/security/ykclient/Makefile ============================================================================== --- head/security/ykclient/Makefile Sat Jul 5 19:54:21 2014 (r360814) +++ head/security/ykclient/Makefile Sat Jul 5 19:57:32 2014 (r360815) @@ -2,6 +2,7 @@ PORTNAME= ykclient PORTVERSION= 2.12 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= http://opensource.yubico.com/yubico-c-client/releases/ @@ -14,8 +15,8 @@ LIB_DEPENDS= libcurl.so:${PORTSDIR}/ftp/ BUILD_DEPENDS= curl-config:${PORTSDIR}/ftp/curl \ help2man:${PORTSDIR}/misc/help2man -USES= pkgconfig GNU_CONFIGURE= yes +USES= libtool pkgconfig USE_LDCONFIG= yes PLIST_FILES= bin/ykclient \ @@ -23,9 +24,9 @@ PLIST_FILES= bin/ykclient \ include/ykclient_errors.h \ include/ykclient_server_response.h \ include/ykclient_version.h \ - lib/libykclient.la \ lib/libykclient.so \ - lib/libykclient.so.8 \ + lib/libykclient.so.3 \ + lib/libykclient.so.3.5.2 \ man/man1/ykclient.1.gz OPTIONS_DEFINE= STATIC @@ -36,6 +37,6 @@ STATIC_PLIST_FILES= lib/libykclient.a MAKE_JOBS_UNSAFE= yes regression-test: build - @(cd ${WRKSRC}; ${MAKE} check) + @(cd ${WRKSRC} && ${MAKE_CMD} check) .include