From owner-svn-ports-all@FreeBSD.ORG Wed Jun 3 15:59:45 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 41A1BFC2; Wed, 3 Jun 2015 15:59:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) 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 2F3941BE2; Wed, 3 Jun 2015 15:59:45 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t53FxjWF026162; Wed, 3 Jun 2015 15:59:45 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t53FxjKE026161; Wed, 3 Jun 2015 15:59:45 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201506031559.t53FxjKE026161@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 3 Jun 2015 15:59:45 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388439 - head/math/vtk5 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.20 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: Wed, 03 Jun 2015 15:59:45 -0000 Author: amdmi3 Date: Wed Jun 3 15:59:44 2015 New Revision: 388439 URL: https://svnweb.freebsd.org/changeset/ports/388439 Log: - Add LICENSE_FILE - Strip libraries Modified: head/math/vtk5/Makefile Modified: head/math/vtk5/Makefile ============================================================================== --- head/math/vtk5/Makefile Wed Jun 3 15:59:33 2015 (r388438) +++ head/math/vtk5/Makefile Wed Jun 3 15:59:44 2015 (r388439) @@ -3,7 +3,7 @@ PORTNAME= vtk PORTVERSION= 5.10.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math graphics MASTER_SITES= http://www.vtk.org/files/release/${PORTVERSION:R}/ PKGNAMESUFFIX= 5 @@ -13,6 +13,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= The Visualization Toolkit LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/Copyright.txt LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2 \ libjpeg.so:${PORTSDIR}/graphics/jpeg \ @@ -253,11 +254,12 @@ LIBS_TOFIX= vtkNetCDF_cxx vtkhdf5 vtkhdf LIBDIR= ${PREFIX}/lib/vtk-${PORTVERSION:R}/ post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/qt4/plugins/designer/libQVTKWidgetPlugin.so # Ports system wants us to conform to lib.so.x format, but VTK5 # only installs lib.so.x.y and lib.so.x.y.z. .if ${PORT_OPTIONS:MSHARED} @for lib in ${LIBS_TOFIX}; do \ - ${CP} ${STAGEDIR}${LIBDIR}/lib$$lib.so ${STAGEDIR}${LIBDIR}/lib$$lib.so.${PORTVERSION}; \ + ${INSTALL_LIB} ${STAGEDIR}${LIBDIR}/lib$$lib.so ${STAGEDIR}${LIBDIR}/lib$$lib.so.${PORTVERSION}; \ ${LN} -sf lib$$lib.so.${PORTVERSION} ${STAGEDIR}${LIBDIR}/lib$$lib.so.${PORTVERSION:R}; \ done @cd ${STAGEDIR}${LIBDIR}; \