From owner-svn-ports-all@FreeBSD.ORG Mon Nov 26 19:49:23 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8AF47D66; Mon, 26 Nov 2012 19:49:23 +0000 (UTC) (envelope-from jase@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 6FA4B8FC13; Mon, 26 Nov 2012 19:49:23 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id qAQJnN3s060568; Mon, 26 Nov 2012 19:49:23 GMT (envelope-from jase@svn.freebsd.org) Received: (from jase@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id qAQJnNaN060564; Mon, 26 Nov 2012 19:49:23 GMT (envelope-from jase@svn.freebsd.org) Message-Id: <201211261949.qAQJnNaN060564@svn.freebsd.org> From: Jase Thew Date: Mon, 26 Nov 2012 19:49:23 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r307794 - in head/security/polarssl: . files 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.14 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: Mon, 26 Nov 2012 19:49:23 -0000 Author: jase Date: Mon Nov 26 19:49:22 2012 New Revision: 307794 URL: http://svnweb.freebsd.org/changeset/ports/307794 Log: - Update to 1.2.3 - Assume maintainership Changes: https://raw.github.com/polarssl/polarssl/fb1ba781b398d39f4444515381babcc9e5a8dcd2/ChangeLog Feature safe: yes Deleted: head/security/polarssl/files/patch-Makefile Modified: head/security/polarssl/Makefile (contents, props changed) head/security/polarssl/distinfo (contents, props changed) head/security/polarssl/files/patch-library-Makefile (contents, props changed) head/security/polarssl/pkg-plist (contents, props changed) Modified: head/security/polarssl/Makefile ============================================================================== --- head/security/polarssl/Makefile Mon Nov 26 18:16:57 2012 (r307793) +++ head/security/polarssl/Makefile Mon Nov 26 19:49:22 2012 (r307794) @@ -1,18 +1,21 @@ # $FreeBSD$ PORTNAME= polarssl -PORTVERSION= 1.1.4 +PORTVERSION= 1.2.3 DISTVERSIONSUFFIX= -gpl CATEGORIES= security devel -MASTER_SITES= http://polarssl.org/code/download/ +MASTER_SITES= http://polarssl.org/download/ EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org +MAINTAINER= jase@FreeBSD.org COMMENT= Open Source embedded SSL/TLS cryptographic library LICENSE= GPLv2 -USE_PERL5_BUILD= yes +FETCH_ARGS= -pRr +ALL_TARGET= no_test + +USE_GMAKE= yes USE_LDCONFIG= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} @@ -33,8 +36,10 @@ do-install: ${INSTALL_PROGRAM} ${WRKSRC}/programs/*/${i} ${PREFIX}/bin/polarssl_${i} .endfor +.include + post-install: -.if !defined(NOPORTDOCS) +.if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${DOCSDIR} .for i in ${PORTDOCS} ${INSTALL_MAN} ${WRKSRC}/${i} ${DOCSDIR}/ Modified: head/security/polarssl/distinfo ============================================================================== --- head/security/polarssl/distinfo Mon Nov 26 18:16:57 2012 (r307793) +++ head/security/polarssl/distinfo Mon Nov 26 19:49:22 2012 (r307794) @@ -1,2 +1,2 @@ -SHA256 (polarssl-1.1.4-gpl.tgz) = 2d29fd04a0d0ba29dae6bd29fb418944c08d3916665dcca74afb297ef37584b6 -SIZE (polarssl-1.1.4-gpl.tgz) = 611340 +SHA256 (polarssl-1.2.3-gpl.tgz) = 5cd3bc6aa85e1de809c3b4c76932794c60a8d05faf2cf8f62933ab97ef52e4ae +SIZE (polarssl-1.2.3-gpl.tgz) = 978269 Modified: head/security/polarssl/files/patch-library-Makefile ============================================================================== --- head/security/polarssl/files/patch-library-Makefile Mon Nov 26 18:16:57 2012 (r307793) +++ head/security/polarssl/files/patch-library-Makefile Mon Nov 26 19:49:22 2012 (r307794) @@ -1,20 +1,25 @@ ---- library/Makefile.orig 2010-03-24 15:57:15.000000000 +0900 -+++ library/Makefile 2010-07-15 14:33:59.000000000 +0900 -@@ -11,7 +11,7 @@ +--- library/Makefile.orig 2012-11-26 19:20:30.821850410 +0000 ++++ library/Makefile 2012-11-26 19:21:01.534380354 +0000 +@@ -18,9 +18,7 @@ # CFLAGS += -D_BSD_EXTENSION - + # To compile as a shared library: --# CFLAGS += -fPIC -+CFLAGS += -fPIC - - DLEXT=so - # OSX shared library extension: -@@ -29,7 +29,7 @@ - +-ifdef SHARED + CFLAGS += -fPIC +-endif + + SONAME=libpolarssl.so.0 + +@@ -53,11 +51,7 @@ + .SILENT: - + +-ifndef SHARED -all: static -+all: static shared - +-else +-all: shared +-endif ++all: shared static + static: libpolarssl.a - + Modified: head/security/polarssl/pkg-plist ============================================================================== --- head/security/polarssl/pkg-plist Mon Nov 26 18:16:57 2012 (r307793) +++ head/security/polarssl/pkg-plist Mon Nov 26 19:49:22 2012 (r307794) @@ -20,8 +20,10 @@ bin/polarssl_ssl_test include/polarssl/aes.h include/polarssl/arc4.h include/polarssl/asn1.h +include/polarssl/asn1write.h include/polarssl/base64.h include/polarssl/bignum.h +include/polarssl/blowfish.h include/polarssl/bn_mul.h include/polarssl/camellia.h include/polarssl/certs.h @@ -35,6 +37,7 @@ include/polarssl/dhm.h include/polarssl/entropy.h include/polarssl/entropy_poll.h include/polarssl/error.h +include/polarssl/gcm.h include/polarssl/havege.h include/polarssl/md.h include/polarssl/md2.h @@ -45,15 +48,18 @@ include/polarssl/net.h include/polarssl/openssl.h include/polarssl/padlock.h include/polarssl/pem.h +include/polarssl/pbkdf2.h include/polarssl/pkcs11.h include/polarssl/rsa.h include/polarssl/sha1.h include/polarssl/sha2.h include/polarssl/sha4.h include/polarssl/ssl.h +include/polarssl/ssl_cache.h include/polarssl/timing.h include/polarssl/version.h include/polarssl/x509.h +include/polarssl/x509write.h include/polarssl/xtea.h lib/libpolarssl.a lib/libpolarssl.so