From owner-svn-ports-head@freebsd.org Mon May 4 20:46:56 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id CAA862C2D3E; Mon, 4 May 2020 20:46:56 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49GFJw4nt8z3J4t; Mon, 4 May 2020 20:46:56 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 9FB0D2331; Mon, 4 May 2020 20:46:56 +0000 (UTC) (envelope-from cmt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 044Kkut4070665; Mon, 4 May 2020 20:46:56 GMT (envelope-from cmt@FreeBSD.org) Received: (from cmt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 044Kkt5x070655; Mon, 4 May 2020 20:46:55 GMT (envelope-from cmt@FreeBSD.org) Message-Id: <202005042046.044Kkt5x070655@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cmt set sender to cmt@FreeBSD.org using -f From: Christoph Moench-Tegeder Date: Mon, 4 May 2020 20:46:55 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533986 - in head/graphics/wings: . files X-SVN-Group: ports-head X-SVN-Commit-Author: cmt X-SVN-Commit-Paths: in head/graphics/wings: . files X-SVN-Commit-Revision: 533986 X-SVN-Commit-Repository: ports 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.29 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: Mon, 04 May 2020 20:46:56 -0000 Author: cmt Date: Mon May 4 20:46:54 2020 New Revision: 533986 URL: https://svnweb.freebsd.org/changeset/ports/533986 Log: graphics/wings: update to 2.2.5 and grab MAINTAINER. http://www.wings3d.com/?page_id=76 Modified: head/graphics/wings/Makefile head/graphics/wings/distinfo head/graphics/wings/files/patch-plugins__src_Makefile head/graphics/wings/files/patch-plugins__src_autouv_Makefile head/graphics/wings/files/patch-plugins__src_commands_Makefile head/graphics/wings/files/patch-plugins__src_primitives_Makefile head/graphics/wings/pkg-plist Modified: head/graphics/wings/Makefile ============================================================================== --- head/graphics/wings/Makefile Mon May 4 20:46:07 2020 (r533985) +++ head/graphics/wings/Makefile Mon May 4 20:46:54 2020 (r533986) @@ -2,12 +2,12 @@ # $FreeBSD$ PORTNAME= wings -PORTVERSION= 2.2.4 +PORTVERSION= 2.2.5 CATEGORIES= graphics MASTER_SITES= SF DIST_SUBDIR= erlang -MAINTAINER= ports@FreeBSD.org +MAINTAINER= cmt@FreeBSD.org COMMENT= Polygon mesh modeler written in Erlang LICENSE= Wings3D @@ -40,8 +40,6 @@ DESKTOP_ENTRIES="Wings" \ "" post-patch: - @${REINPLACE_CMD} -e 's|$$(GCC)|${CC} -I${LOCALBASE}/include -L${LOCALBASE}/lib|g' \ - ${WRKSRC}/plugins_src/accel/Makefile @${REINPLACE_CMD} -e 's,include_lib("wings/,include_lib(",g' \ ${WRKSRC}/src/*.erl \ ${WRKSRC}/plugins_src/*.erl \ @@ -51,18 +49,16 @@ post-patch: ${WRKSRC}/plugins_src/commands/*.hrl \ ${WRKSRC}/plugins_src/autouv/*.erl \ ${WRKSRC}/icons/*.erl -# @${FIND} ${WRKSRC} -name "*.orig" -delete do-install: cd ${WRKSRC} && ${COPYTREE_SHARE} "ebin icons plugins textures shaders patches" \ ${STAGEDIR}${PREFIX}/lib/erlang/lib/${DISTNAME} cd ${WRKSRC} && ${COPYTREE_SHARE} "src" \ ${STAGEDIR}${PREFIX}/lib/erlang/lib/${DISTNAME} "-name *\.erl" + cd ${WRKSRC} && ${COPYTREE_SHARE} "priv" \ + ${STAGEDIR}${PREFIX}/lib/erlang/lib/${DISTNAME} "-name *\.so" ${LN} -sf ${DISTNAME} ${STAGEDIR}${PREFIX}/lib/erlang/lib/${PORTNAME} ${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/src/${PORTNAME}.icon ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME}.ico - ${CHMOD} u+w ${STAGEDIR}${PREFIX}/lib/erlang/lib/${DISTNAME}/plugins/accel/*.so - ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/erlang/lib/${DISTNAME}/plugins/accel/*.so - ${CHMOD} u-w ${STAGEDIR}${PREFIX}/lib/erlang/lib/${DISTNAME}/plugins/accel/*.so .include Modified: head/graphics/wings/distinfo ============================================================================== --- head/graphics/wings/distinfo Mon May 4 20:46:07 2020 (r533985) +++ head/graphics/wings/distinfo Mon May 4 20:46:54 2020 (r533986) @@ -1,3 +1,3 @@ -TIMESTAMP = 1558985164 -SHA256 (erlang/wings-2.2.4.tar.bz2) = 4325a4c58df77a2b109cbd0046b427e2d3f151d5526f8c2f0848e04db48b95f5 -SIZE (erlang/wings-2.2.4.tar.bz2) = 3027811 +TIMESTAMP = 1588606017 +SHA256 (erlang/wings-2.2.5.tar.bz2) = 95ecf84a8f49bc00b983643e7ccd807f64a3b8b88253037a8ccefbe7a3bedff8 +SIZE (erlang/wings-2.2.5.tar.bz2) = 3211359 Modified: head/graphics/wings/files/patch-plugins__src_Makefile ============================================================================== --- head/graphics/wings/files/patch-plugins__src_Makefile Mon May 4 20:46:07 2020 (r533985) +++ head/graphics/wings/files/patch-plugins__src_Makefile Mon May 4 20:46:54 2020 (r533986) @@ -1,9 +1,9 @@ ---- plugins_src/Makefile.orig 2019-05-28 09:45:19 UTC +--- plugins_src/Makefile.orig 2020-05-04 17:00:55 UTC +++ plugins_src/Makefile -@@ -18,7 +18,7 @@ ESRC=. +@@ -19,7 +19,7 @@ include ../erl.mk + ESRC=. WINGS_INTL=../intl_tools EBIN=../plugins/default - ERLC=erlc -WINGS_TOP=../.. +WINGS_TOP=.. Modified: head/graphics/wings/files/patch-plugins__src_autouv_Makefile ============================================================================== --- head/graphics/wings/files/patch-plugins__src_autouv_Makefile Mon May 4 20:46:07 2020 (r533985) +++ head/graphics/wings/files/patch-plugins__src_autouv_Makefile Mon May 4 20:46:54 2020 (r533986) @@ -1,9 +1,9 @@ ---- plugins_src/autouv/Makefile.orig 2019-05-28 10:07:25 UTC +--- plugins_src/autouv/Makefile.orig 2020-05-04 17:01:46 UTC +++ plugins_src/autouv/Makefile -@@ -18,7 +18,7 @@ ESRC=. +@@ -19,7 +19,7 @@ include ../../erl.mk + ESRC=. WINGS_INTL=../../intl_tools EBIN=../../plugins/autouv - ERLC=erlc -WINGS_TOP=../../.. +WINGS_TOP=../.. Modified: head/graphics/wings/files/patch-plugins__src_commands_Makefile ============================================================================== --- head/graphics/wings/files/patch-plugins__src_commands_Makefile Mon May 4 20:46:07 2020 (r533985) +++ head/graphics/wings/files/patch-plugins__src_commands_Makefile Mon May 4 20:46:54 2020 (r533986) @@ -1,9 +1,9 @@ ---- plugins_src/commands/Makefile.orig 2019-05-28 10:00:46 UTC +--- plugins_src/commands/Makefile.orig 2020-05-04 17:02:14 UTC +++ plugins_src/commands/Makefile -@@ -18,7 +18,7 @@ ESRC=. +@@ -18,7 +18,7 @@ include ../../erl.mk + ESRC=. WINGS_INTL=../../intl_tools EBIN=../../plugins/commands - ERLC=erlc -WINGS_TOP=../../.. +WINGS_TOP=../.. WINGS_E3D=../../e3d Modified: head/graphics/wings/files/patch-plugins__src_primitives_Makefile ============================================================================== --- head/graphics/wings/files/patch-plugins__src_primitives_Makefile Mon May 4 20:46:07 2020 (r533985) +++ head/graphics/wings/files/patch-plugins__src_primitives_Makefile Mon May 4 20:46:54 2020 (r533986) @@ -1,9 +1,9 @@ ---- plugins_src/primitives/Makefile.orig 2019-05-28 09:57:30 UTC +--- plugins_src/primitives/Makefile.orig 2020-05-04 17:02:40 UTC +++ plugins_src/primitives/Makefile -@@ -18,7 +18,7 @@ ESRC=. +@@ -18,7 +18,7 @@ include ../../erl.mk + ESRC=. WINGS_INTL=../../intl_tools EBIN=../../plugins/primitives - ERLC=erlc -WINGS_TOP=../../.. +WINGS_TOP=../.. WINGS_E3D=../../e3d Modified: head/graphics/wings/pkg-plist ============================================================================== --- head/graphics/wings/pkg-plist Mon May 4 20:46:07 2020 (r533985) +++ head/graphics/wings/pkg-plist Mon May 4 20:46:54 2020 (r533986) @@ -88,6 +88,7 @@ lib/erlang/lib/wings-%%VERSION%%/ebin/wings_outliner.b lib/erlang/lib/wings-%%VERSION%%/ebin/wings_palette.beam lib/erlang/lib/wings-%%VERSION%%/ebin/wings_pb.beam lib/erlang/lib/wings-%%VERSION%%/ebin/wings_pick.beam +lib/erlang/lib/wings-%%VERSION%%/ebin/wings_pick_nif.beam lib/erlang/lib/wings-%%VERSION%%/ebin/wings_plugin.beam lib/erlang/lib/wings-%%VERSION%%/ebin/wings_pref.beam lib/erlang/lib/wings-%%VERSION%%/ebin/wings_pref_dlg.beam @@ -260,8 +261,6 @@ lib/erlang/lib/wings-%%VERSION%%/icons/wings_icon_256x lib/erlang/lib/wings-%%VERSION%%/icons/wings_icon_379x379.png lib/erlang/lib/wings-%%VERSION%%/icons/wings_icon_48x48.png lib/erlang/lib/wings-%%VERSION%%/patches/README -lib/erlang/lib/wings-%%VERSION%%/plugins/accel/wings_pick_drv.so -lib/erlang/lib/wings-%%VERSION%%/plugins/accel/wpc_pick.beam lib/erlang/lib/wings-%%VERSION%%/plugins/autouv/README lib/erlang/lib/wings-%%VERSION%%/plugins/autouv/README-shaders.txt lib/erlang/lib/wings-%%VERSION%%/plugins/autouv/auv_mapping.beam @@ -345,6 +344,7 @@ lib/erlang/lib/wings-%%VERSION%%/plugins/import_export lib/erlang/lib/wings-%%VERSION%%/plugins/import_export/wpc_collada.beam lib/erlang/lib/wings-%%VERSION%%/plugins/import_export/wpc_gltf.beam lib/erlang/lib/wings-%%VERSION%%/plugins/import_export/wpc_hlines.beam +lib/erlang/lib/wings-%%VERSION%%/plugins/import_export/wpc_jscad.beam lib/erlang/lib/wings-%%VERSION%%/plugins/import_export/wpc_kerky.beam lib/erlang/lib/wings-%%VERSION%%/plugins/import_export/wpc_lwo.beam lib/erlang/lib/wings-%%VERSION%%/plugins/import_export/wpc_obj.beam @@ -368,6 +368,7 @@ lib/erlang/lib/wings-%%VERSION%%/plugins/primitives/wp lib/erlang/lib/wings-%%VERSION%%/plugins/primitives/wpc_spiral.beam lib/erlang/lib/wings-%%VERSION%%/plugins/primitives/wpc_torus.beam lib/erlang/lib/wings-%%VERSION%%/plugins/primitives/wpc_tt.beam +lib/erlang/lib/wings-%%VERSION%%/priv/wings_pick_nif.so lib/erlang/lib/wings-%%VERSION%%/shaders/alpha_test.fs lib/erlang/lib/wings-%%VERSION%%/shaders/ambient_light.fs lib/erlang/lib/wings-%%VERSION%%/shaders/area_light.fs @@ -446,6 +447,7 @@ lib/erlang/lib/wings-%%VERSION%%/src/wings_outliner.er lib/erlang/lib/wings-%%VERSION%%/src/wings_palette.erl lib/erlang/lib/wings-%%VERSION%%/src/wings_pb.erl lib/erlang/lib/wings-%%VERSION%%/src/wings_pick.erl +lib/erlang/lib/wings-%%VERSION%%/src/wings_pick_nif.erl lib/erlang/lib/wings-%%VERSION%%/src/wings_plugin.erl lib/erlang/lib/wings-%%VERSION%%/src/wings_pref.erl lib/erlang/lib/wings-%%VERSION%%/src/wings_pref_dlg.erl @@ -485,8 +487,8 @@ lib/erlang/lib/wings-%%VERSION%%/src/wings_wm.erl lib/erlang/lib/wings-%%VERSION%%/src/wpa.erl lib/erlang/lib/wings-%%VERSION%%/src/ww_color_ctrl.erl lib/erlang/lib/wings-%%VERSION%%/src/ww_color_slider.erl +lib/erlang/lib/wings-%%VERSION%%/textures/about_wings_art.png lib/erlang/lib/wings-%%VERSION%%/textures/areal_ltcmat.bin -lib/erlang/lib/wings-%%VERSION%%/textures/brand.png lib/erlang/lib/wings-%%VERSION%%/textures/brdf_tab.bin lib/erlang/lib/wings-%%VERSION%%/textures/grandcanyon.png lib/erlang/lib/wings-%%VERSION%%/textures/ip_helper.png