From owner-svn-ports-head@FreeBSD.ORG Wed Jan 29 19:49:49 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 203B5C3C; Wed, 29 Jan 2014 19:49:49 +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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0B3F71F00; Wed, 29 Jan 2014 19:49:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id s0TJnmYq015371; Wed, 29 Jan 2014 19:49:48 GMT (envelope-from madpilot@svn.freebsd.org) Received: (from madpilot@localhost) by svn.freebsd.org (8.14.7/8.14.7/Submit) id s0TJnmf7015367; Wed, 29 Jan 2014 19:49:48 GMT (envelope-from madpilot@svn.freebsd.org) Message-Id: <201401291949.s0TJnmf7015367@svn.freebsd.org> From: Guido Falsi Date: Wed, 29 Jan 2014 19:49:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r341773 - in head/security/botan110: . 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-head@freebsd.org X-Mailman-Version: 2.1.17 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: Wed, 29 Jan 2014 19:49:49 -0000 Author: madpilot Date: Wed Jan 29 19:49:48 2014 New Revision: 341773 URL: http://svnweb.freebsd.org/changeset/ports/341773 QAT: https://qat.redports.org/buildarchive/r341773/ Log: - Update to 1.10.7 - Convert to USES - Convert to staging PR: ports/186233 Submitted by: Lapo Luchini (maintainer) Modified: head/security/botan110/Makefile head/security/botan110/distinfo head/security/botan110/files/patch-src_build_data_makefile_unix_shr.in Modified: head/security/botan110/Makefile ============================================================================== --- head/security/botan110/Makefile Wed Jan 29 19:38:08 2014 (r341772) +++ head/security/botan110/Makefile Wed Jan 29 19:49:48 2014 (r341773) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= botan -PORTVERSION= 1.10.5 +PORTVERSION= 1.10.7 CATEGORIES= security MASTER_SITES= http://files.randombit.net/botan/v1.10/ PKGNAMESUFFIX= 110 @@ -21,22 +21,20 @@ OPTIONS_DEFINE= SSL GMP ECC OPTIONS_DEFAULT= SSL GMP ECC ECC_DESC= ECC support +USES= compiler gmake USE_BZIP2= yes USE_PYTHON_BUILD= yes HAS_CONFIGURE= yes CONFIGURE_SCRIPT= configure.py -CONFIGURE_ARGS= --prefix=${PREFIX} --with-tr1-implementation=boost \ - --with-bzip2 --with-zlib -USE_GMAKE= yes +CONFIGURE_ARGS= --prefix=${PREFIX} --with-bzip2 --with-zlib MAKE_ARGS= CXX="${CXX}" LIB_OPT="${CXXFLAGS}" USE_LDCONFIG= yes PLIST_FILES= bin/botan-config-1.10 lib/libbotan-1.10.a lib/libbotan-1.10.so lib/libbotan-1.10.so.0 \ - lib/libbotan-1.10.so.0.5 libdata/pkgconfig/botan-1.10.pc + lib/libbotan-1.10.so.0.7 libdata/pkgconfig/botan-1.10.pc DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} PORTDOCS= * -NO_STAGE= yes .include .if ${PORT_OPTIONS:MSSL} @@ -58,6 +56,10 @@ CXXFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS+=--with-tr1-implementation=none .endif +.include + +CONFIGURE_ARGS+=--cc ${COMPILER_TYPE} + post-patch: ${REINPLACE_CMD} -e "s|#!/usr/bin/env python|#!${PYTHON_CMD}|" \ ${WRKSRC}/configure.py @@ -67,8 +69,8 @@ post-patch: .endif post-install: - @(cd ${PREFIX}; ${FIND} -s include/botan-1.10 -not -type d) >> ${TMPPLIST} + @(cd "${STAGEDIR}${PREFIX}"; ${FIND} -s include/botan-1.10 -not -type d) >> ${TMPPLIST} @${ECHO_CMD} @dirrm include/botan-1.10/botan >> ${TMPPLIST} @${ECHO_CMD} @dirrm include/botan-1.10 >> ${TMPPLIST} -.include +.include Modified: head/security/botan110/distinfo ============================================================================== --- head/security/botan110/distinfo Wed Jan 29 19:38:08 2014 (r341772) +++ head/security/botan110/distinfo Wed Jan 29 19:49:48 2014 (r341773) @@ -1,2 +1,2 @@ -SHA256 (Botan-1.10.5.tbz) = 2934c00533847dc93c485081d3ce6aae4a110151a69b587b895241159da77cf3 -SIZE (Botan-1.10.5.tbz) = 2214817 +SHA256 (Botan-1.10.7.tbz) = 19f79ae670cb2ea7c290244ff6ff564ce74b45d8845af52787a30c646e16324d +SIZE (Botan-1.10.7.tbz) = 2240316 Modified: head/security/botan110/files/patch-src_build_data_makefile_unix_shr.in ============================================================================== --- head/security/botan110/files/patch-src_build_data_makefile_unix_shr.in Wed Jan 29 19:38:08 2014 (r341772) +++ head/security/botan110/files/patch-src_build_data_makefile_unix_shr.in Wed Jan 29 19:49:48 2014 (r341773) @@ -1,11 +1,22 @@ ---- src/build-data/makefile/unix_shr.in.orig 2011-09-02 19:36:47.671575619 +0000 -+++ src/build-data/makefile/unix_shr.in 2011-09-02 19:37:32.341486166 +0000 -@@ -20,7 +20,7 @@ - LIBDIR = $(DESTDIR)/%{libdir} - HEADERDIR = $(DESTDIR)/%{includedir}/botan-$(SERIES)/botan - DOCDIR = $(DESTDIR)/%{docdir}/botan-$(VERSION) +--- src/build-data/makefile/unix_shr.in.orig 2013-12-29 19:30:46.000000000 +0100 ++++ src/build-data/makefile/unix_shr.in 2014-01-29 12:56:53.163471296 +0100 +@@ -14,13 +14,13 @@ VERSION = %{version} + SERIES = %{version_major}.%{version_minor} + + # Installation Settings +-DESTDIR = %{prefix} ++PREFIX = %{prefix} + +-BINDIR = $(DESTDIR)/bin +-LIBDIR = $(DESTDIR)/%{libdir} +-HEADERDIR = $(DESTDIR)/%{includedir}/botan-$(SERIES)/botan +-DOCDIR = $(DESTDIR)/%{docdir}/botan-$(VERSION) -PKGCONF_DIR = $(LIBDIR)/pkgconfig -+PKGCONF_DIR = $(DESTDIR)/libdata/pkgconfig ++BINDIR = $(DESTDIR)$(PREFIX)/bin ++LIBDIR = $(DESTDIR)$(PREFIX)/%{libdir} ++HEADERDIR = $(DESTDIR)$(PREFIX)/%{includedir}/botan-$(SERIES)/botan ++DOCDIR = $(DESTDIR)$(PREFIX)/%{docdir}/botan-$(VERSION) ++PKGCONF_DIR = $(DESTDIR)$(PREFIX)/libdata/pkgconfig CONFIG_SCRIPT = %{botan_config} PKGCONFIG = %{botan_pkgconfig}