Date: Fri, 16 Jun 2017 10:57:15 +0000 (UTC) From: "Carlos J. Puga Medina" <cpm@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r443684 - head/www/libxul Message-ID: <201706161057.v5GAvFVM012210@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: cpm Date: Fri Jun 16 10:57:14 2017 New Revision: 443684 URL: https://svnweb.freebsd.org/changeset/ports/443684 Log: - Fix shebangs - Bump PORTREVISION Error: '/usr/bin/env python' is an invalid shebang you need USES=shebangfix for 'lib/libxul/sdk/bin/xpidl.py' Error: '/usr/bin/env python' is an invalid shebang you need USES=shebangfix for 'lib/libxul/sdk/bin/xpt.py' PR: 219533 Submitted by: cpm Approved by: jbeich (gecko) Modified: head/www/libxul/Makefile Modified: head/www/libxul/Makefile ============================================================================== --- head/www/libxul/Makefile Fri Jun 16 10:52:28 2017 (r443683) +++ head/www/libxul/Makefile Fri Jun 16 10:57:14 2017 (r443684) @@ -3,7 +3,7 @@ PORTNAME= libxul DISTVERSION= 45.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= www devel MASTER_SITES= MOZILLA/firefox/releases/${DISTVERSION}esr/source \ MOZILLA/firefox/candidates/${DISTVERSION}esr-candidates/build3/source @@ -34,7 +34,9 @@ WRKSRC:= ${WRKDIR}/firefox-${DISTVERSION}esr CONFLICTS_INSTALL= libxul-1.9.* USE_GL= gl -USES= pathfix tar:xz +USES= pathfix shebangfix tar:xz +SHEBANG_FILES= xpcom/idl-parser/xpidl/xpidl.py \ + xpcom/typelib/xpt/tools/xpt.py MAKE_ENV= SKIP_GRE_REGISTRATION=1 mozappdir=${PREFIX}/lib/${MOZILLA} LDFLAGS+= -Wl,-rpath,${PREFIX}/lib/${MOZ_RPATH} USE_LDCONFIG= ${PREFIX}/lib/${MOZILLA}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706161057.v5GAvFVM012210>