From owner-svn-ports-all@freebsd.org Sat Feb 18 00:29:08 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6FE31CDA576; Sat, 18 Feb 2017 00:29:08 +0000 (UTC) (envelope-from jbeich@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 mx1.freebsd.org (Postfix) with ESMTPS id 3F556B2E; Sat, 18 Feb 2017 00:29:08 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v1I0T7FZ094949; Sat, 18 Feb 2017 00:29:07 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v1I0T7Yk094948; Sat, 18 Feb 2017 00:29:07 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201702180029.v1I0T7Yk094948@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sat, 18 Feb 2017 00:29:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r434325 - head/devel/icu 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.23 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: Sat, 18 Feb 2017 00:29:08 -0000 Author: jbeich Date: Sat Feb 18 00:29:07 2017 New Revision: 434325 URL: https://svnweb.freebsd.org/changeset/ports/434325 Log: devel/icu: use sh(1) globbing for endian-sensitive path This should unbreak build on armeb, mipshf, mipsn32, mips64hf without having to worry about future architectures. Modified: head/devel/icu/Makefile (contents, props changed) Modified: head/devel/icu/Makefile ============================================================================== --- head/devel/icu/Makefile Fri Feb 17 23:35:36 2017 (r434324) +++ head/devel/icu/Makefile Sat Feb 18 00:29:07 2017 (r434325) @@ -33,16 +33,7 @@ WRKSRC= ${WRKDIR}/icu/source ICUMAJOR= ${PORTVERSION:C/\..*//} PLIST_SUB+= ICUMAJOR=${ICUMAJOR} ICUVER=${PORTVERSION} -.include - .ifndef PKGNAMESUFFIX -.if ${ARCH} == "mips" || ${ARCH} == "mips64" || ${ARCH} == "sparc64" \ - || ${ARCH} == "powerpc" || ${ARCH} == "powerpc64" -PLIST_FILES+= %%DATADIR%%/%%ICUVER%%/icudt%%ICUMAJOR%%b.dat -.else -PLIST_FILES+= %%DATADIR%%/%%ICUVER%%/icudt%%ICUMAJOR%%l.dat -.endif - post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/g* \ ${STAGEDIR}${PREFIX}/bin/*conv \ @@ -50,6 +41,9 @@ post-install: ${STAGEDIR}${PREFIX}/bin/derb \ ${STAGEDIR}${PREFIX}/bin/pkgdata @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/* +# Filename varies by endianness: icudtb.dat vs. icudtl.dat + @(cd ${STAGEDIR}${PREFIX} && ${ECHO_CMD} \ + ${DATADIR_REL}/${PORTVERSION}/icudt*.dat >>${TMPPLIST}) .endif # PKGNAMESUFFIX .include