From owner-svn-ports-head@FreeBSD.ORG Fri May 30 09:58:03 2014 Return-Path: Delivered-To: svn-ports-head@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 C37BB5CA; Fri, 30 May 2014 09:58:03 +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 B0AB62494; Fri, 30 May 2014 09:58:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s4U9w3qW068661; Fri, 30 May 2014 09:58:03 GMT (envelope-from tijl@svn.freebsd.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s4U9w2t8068653; Fri, 30 May 2014 09:58:02 GMT (envelope-from tijl@svn.freebsd.org) Message-Id: <201405300958.s4U9w2t8068653@svn.freebsd.org> From: Tijl Coosemans Date: Fri, 30 May 2014 09:58:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r355812 - in head/security: gpgme libassuan libgpg-error X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 May 2014 09:58:03 -0000 Author: tijl Date: Fri May 30 09:58:02 2014 New Revision: 355812 URL: http://svnweb.freebsd.org/changeset/ports/355812 QAT: https://qat.redports.org/buildarchive/r355812/ Log: USES=libtool tar:bzip2. Modified: head/security/gpgme/Makefile head/security/gpgme/pkg-plist head/security/libassuan/Makefile head/security/libgpg-error/Makefile head/security/libgpg-error/pkg-plist Modified: head/security/gpgme/Makefile ============================================================================== --- head/security/gpgme/Makefile Fri May 30 09:45:28 2014 (r355811) +++ head/security/gpgme/Makefile Fri May 30 09:58:02 2014 (r355812) @@ -3,6 +3,7 @@ PORTNAME= gpgme PORTVERSION= 1.4.3 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= gpgme @@ -17,10 +18,8 @@ LICENSE= LGPL21 LIB_DEPENDS= libassuan.so:${PORTSDIR}/security/libassuan \ libgpg-error.so:${PORTSDIR}/security/libgpg-error -USE_BZIP2= yes -USE_AUTOTOOLS= libtool -USE_GNOME= ltverhack -USES= gmake +GNU_CONFIGURE= yes +USES= gmake libtool:keepla tar:bzip2 USE_LDCONFIG= yes CONFIGURE_ARGS= --includedir=${PREFIX}/include/gpgme \ Modified: head/security/gpgme/pkg-plist ============================================================================== --- head/security/gpgme/pkg-plist Fri May 30 09:45:28 2014 (r355811) +++ head/security/gpgme/pkg-plist Fri May 30 09:58:02 2014 (r355812) @@ -3,14 +3,14 @@ include/gpgme/gpgme.h lib/common-lisp/gpgme/gpgme-package.lisp lib/common-lisp/gpgme/gpgme.asd lib/common-lisp/gpgme/gpgme.lisp -lib/libgpgme-pthread.a lib/libgpgme-pthread.la lib/libgpgme-pthread.so lib/libgpgme-pthread.so.11 -lib/libgpgme.a +lib/libgpgme-pthread.so.11.11.0 lib/libgpgme.la lib/libgpgme.so lib/libgpgme.so.11 +lib/libgpgme.so.11.11.0 share/aclocal/gpgme.m4 @dirrm lib/common-lisp/gpgme @dirrmtry lib/common-lisp Modified: head/security/libassuan/Makefile ============================================================================== --- head/security/libassuan/Makefile Fri May 30 09:45:28 2014 (r355811) +++ head/security/libassuan/Makefile Fri May 30 09:58:02 2014 (r355812) @@ -3,6 +3,7 @@ PORTNAME= libassuan PORTVERSION= 2.1.1 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR=${PORTNAME} @@ -14,18 +15,14 @@ COMMENT= IPC library used by GnuPG and g LIB_DEPENDS= libgpg-error.so:${PORTSDIR}/security/libgpg-error -USE_BZIP2= yes GNU_CONFIGURE= yes +USES= libtool:keepla tar:bzip2 USE_LDCONFIG= yes -# Silly, but apparently the only way to get the proper shared lib version number -USE_AUTOTOOLS= libtool -USE_GNOME= ltverhack - INFO= assuan PLIST_FILES= bin/libassuan-config include/assuan.h \ - lib/libassuan.a lib/libassuan.la \ - lib/libassuan.so.0 lib/libassuan.so share/aclocal/libassuan.m4 + lib/libassuan.la lib/libassuan.so lib/libassuan.so.0 \ + lib/libassuan.so.0.4.1 share/aclocal/libassuan.m4 verify: checksum gpg --verify ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}.sig Modified: head/security/libgpg-error/Makefile ============================================================================== --- head/security/libgpg-error/Makefile Fri May 30 09:45:28 2014 (r355811) +++ head/security/libgpg-error/Makefile Fri May 30 09:58:02 2014 (r355812) @@ -3,6 +3,7 @@ PORTNAME= libgpg-error PORTVERSION= 1.13 +PORTREVISION= 1 CATEGORIES= security devel MASTER_SITES= ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -12,9 +13,7 @@ COMMENT= Common error values for all Gnu OPTIONS_DEFINE= DOCS NLS -USES= gmake tar:bzip2 -USE_AUTOTOOLS= libtool -USE_GNOME= ltverhack +USES= gmake libtool:keepla tar:bzip2 USE_LDCONFIG= yes GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes Modified: head/security/libgpg-error/pkg-plist ============================================================================== --- head/security/libgpg-error/pkg-plist Fri May 30 09:45:28 2014 (r355811) +++ head/security/libgpg-error/pkg-plist Fri May 30 09:58:02 2014 (r355812) @@ -1,10 +1,10 @@ bin/gpg-error bin/gpg-error-config include/gpg-error.h -lib/libgpg-error.a lib/libgpg-error.la lib/libgpg-error.so lib/libgpg-error.so.0 +lib/libgpg-error.so.0.11.0 share/aclocal/gpg-error.m4 share/common-lisp/source/gpg-error/gpg-error.asd share/common-lisp/source/gpg-error/gpg-error-package.lisp