From owner-svn-ports-all@freebsd.org Thu Jan 31 17:51:42 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4746314B1889; Thu, 31 Jan 2019 17:51:42 +0000 (UTC) (envelope-from tobik@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 E08AF6A696; Thu, 31 Jan 2019 17:51:41 +0000 (UTC) (envelope-from tobik@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 D5497ACD6; Thu, 31 Jan 2019 17:51:41 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0VHpf0j031289; Thu, 31 Jan 2019 17:51:41 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0VHpd7Y031278; Thu, 31 Jan 2019 17:51:39 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201901311751.x0VHpd7Y031278@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Thu, 31 Jan 2019 17:51:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491744 - in head: devel/bazel devel/glib20 devel/p5-Devel-BeginLift devel/p5-UNIVERSAL-ref devel/py-columnize games/kiki graphics/jogl mail/py-milter math/cln multimedia/kodi net-mgmt/... X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head: devel/bazel devel/glib20 devel/p5-Devel-BeginLift devel/p5-UNIVERSAL-ref devel/py-columnize games/kiki graphics/jogl mail/py-milter math/cln multimedia/kodi net-mgmt/kismet print/pdf-renderer X-SVN-Commit-Revision: 491744 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: E08AF6A696 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.984,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-0.999,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Thu, 31 Jan 2019 17:51:42 -0000 Author: tobik Date: Thu Jan 31 17:51:39 2019 New Revision: 491744 URL: https://svnweb.freebsd.org/changeset/ports/491744 Log: Only append to EXTRA_PATCHES after bsd.port.pre.mk Modified: head/devel/bazel/Makefile head/devel/glib20/Makefile head/devel/p5-Devel-BeginLift/Makefile head/devel/p5-UNIVERSAL-ref/Makefile head/devel/py-columnize/Makefile head/games/kiki/Makefile head/graphics/jogl/Makefile head/mail/py-milter/Makefile head/math/cln/Makefile head/multimedia/kodi/Makefile head/net-mgmt/kismet/Makefile head/print/pdf-renderer/Makefile Modified: head/devel/bazel/Makefile ============================================================================== --- head/devel/bazel/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/devel/bazel/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -41,7 +41,7 @@ STRIP= # The bazel binary is also a zip archive (extra .include .if ${ARCH} == "i386" -EXTRA_PATCHES= ${FILESDIR}/extra-i386_src_BUILD ${FILESDIR}/extra-i386_tools_cpp_BUILD.static.freebsd +EXTRA_PATCHES+= ${FILESDIR}/extra-i386_src_BUILD ${FILESDIR}/extra-i386_tools_cpp_BUILD.static.freebsd .endif # Have the location of the system-wide rc file reside ${ETCDIR}. Modified: head/devel/glib20/Makefile ============================================================================== --- head/devel/glib20/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/devel/glib20/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -72,7 +72,7 @@ CONFIGURE_ARGS+= --with-libiconv=gnu .endif .if ${ARCH} == powerpc64 -EXTRA_PATCHES= ${FILESDIR}/extra-arch-powerpc64 +EXTRA_PATCHES+= ${FILESDIR}/extra-arch-powerpc64 .endif # Let glib use asm code for implementing atomic ops on i386 and amd64. Modified: head/devel/p5-Devel-BeginLift/Makefile ============================================================================== --- head/devel/p5-Devel-BeginLift/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/devel/p5-Devel-BeginLift/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -21,7 +21,7 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} >= 502501 -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-BeginLift.xs +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-BeginLift.xs .endif .include Modified: head/devel/p5-UNIVERSAL-ref/Makefile ============================================================================== --- head/devel/p5-UNIVERSAL-ref/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/devel/p5-UNIVERSAL-ref/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -20,7 +20,7 @@ USE_PERL5= configure .include .if ${PERL_LEVEL} >= 502501 -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-ref.xs +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-ref.xs .endif .include Modified: head/devel/py-columnize/Makefile ============================================================================== --- head/devel/py-columnize/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/devel/py-columnize/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -22,7 +22,7 @@ USE_PYTHON= autoplist distutils .include .if ${PYTHON_MAJOR_VER} == "3" -EXTRA_PATCHES= ${FILESDIR}/extra-patch-____pkginfo____.py +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-____pkginfo____.py .else MY_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}backports.shutil_get_terminal_size>=1.0:devel/py-backports.shutil_get_terminal_size@${PY_FLAVOR} .endif Modified: head/games/kiki/Makefile ============================================================================== --- head/games/kiki/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/games/kiki/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -40,7 +40,7 @@ CXXFLAGS+= -Werror=tautological-constant-out-of-range- .endif .if ${OSVERSION} > 1200031 -EXTRA_PATCHES= ${FILESDIR}/extra-patch-ino64 +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-ino64 .endif post-patch: Modified: head/graphics/jogl/Makefile ============================================================================== --- head/graphics/jogl/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/graphics/jogl/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -65,7 +65,7 @@ PLIST_SUB+= JDK7="@comment " .endif .if ${JAVA_PORT_VERSION:M1.8.*} -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-build.xml +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-build.xml .endif post-patch: Modified: head/mail/py-milter/Makefile ============================================================================== --- head/mail/py-milter/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/mail/py-milter/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -32,7 +32,7 @@ post-install: .include .if ${FLAVOR:Upy27:Mpy3*} -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-miltermodule.c +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-miltermodule.c .endif .include Modified: head/math/cln/Makefile ============================================================================== --- head/math/cln/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/math/cln/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -26,7 +26,7 @@ INFO= cln .if ${ARCH} == aarch64 || ${ARCH} == armv6 || ${ARCH} == armv7 CPPFLAGS+= -DNO_ASM -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src_base_cl__low.h \ +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-src_base_cl__low.h \ ${PATCHDIR}/extra-patch-src_base_low_cl__low__div.cc \ ${PATCHDIR}/extra-patch-src_base_low_cl__low__mul.cc .endif Modified: head/multimedia/kodi/Makefile ============================================================================== --- head/multimedia/kodi/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/multimedia/kodi/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -202,7 +202,7 @@ PLIST_SUB+= ARM="@comment " PLIST_SUB+= X86="" .else # armv6 || armv7 (rpi1 and rpi2 only) -EXTRA_PATCHES= ${FILESDIR}/extra-armv6_hal +EXTRA_PATCHES+= ${FILESDIR}/extra-armv6_hal CONFIGURE_ARGS+= --enable-player=omxplayer LIB_DEPENDS+= libEGL.so:misc/raspberrypi-userland \ libhal.so:sysutils/hal \ Modified: head/net-mgmt/kismet/Makefile ============================================================================== --- head/net-mgmt/kismet/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/net-mgmt/kismet/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -67,7 +67,7 @@ PLIST_SUB+= PLUGINS="@comment " .include .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200000 -EXTRA_PATCHES=${FILESDIR}/extra-patch-restricted-plugin-ptw_aircrack-crypto.cc +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-restricted-plugin-ptw_aircrack-crypto.cc .endif post-patch: Modified: head/print/pdf-renderer/Makefile ============================================================================== --- head/print/pdf-renderer/Makefile Thu Jan 31 17:47:17 2019 (r491743) +++ head/print/pdf-renderer/Makefile Thu Jan 31 17:51:39 2019 (r491744) @@ -40,7 +40,7 @@ ALL_TARGET+= javadoc .include .if ${JAVA_PORT_VERSION:M1.8.*} -EXTRA_PATCHES= ${PATCHDIR}/extra-patch-swinglabs-build-impl.xml +EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-swinglabs-build-impl.xml .endif do-install: