From owner-svn-ports-all@freebsd.org Thu Feb 25 16:12:20 2016 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 A8B04AB3962; Thu, 25 Feb 2016 16:12:20 +0000 (UTC) (envelope-from tijl@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 5B5BC8FF; Thu, 25 Feb 2016 16:12:20 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u1PGCJ3Y096968; Thu, 25 Feb 2016 16:12:19 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u1PGCJ7f096967; Thu, 25 Feb 2016 16:12:19 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201602251612.u1PGCJ7f096967@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 25 Feb 2016 16:12:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r409533 - branches/2016Q1/lang/sdcc X-SVN-Group: ports-branches 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: Thu, 25 Feb 2016 16:12:20 -0000 Author: tijl Date: Thu Feb 25 16:12:19 2016 New Revision: 409533 URL: https://svnweb.freebsd.org/changeset/ports/409533 Log: MFH: r409285 Patch files to replace ARCH with PICARCH. NOPRECIOUSMAKEVARS makes bsd.port.mk stop using ARCH but the package builders set ARCH in their make.conf anyway. Some libraries were missing from the package because of this. Reported by: Jason Bacon Approved by: ports-secteam (feld) Modified: branches/2016Q1/lang/sdcc/Makefile Directory Properties: branches/2016Q1/ (props changed) Modified: branches/2016Q1/lang/sdcc/Makefile ============================================================================== --- branches/2016Q1/lang/sdcc/Makefile Thu Feb 25 16:10:24 2016 (r409532) +++ branches/2016Q1/lang/sdcc/Makefile Thu Feb 25 16:12:19 2016 (r409533) @@ -3,7 +3,7 @@ PORTNAME= sdcc PORTVERSION= 3.5.0 DISTVERSIONPREFIX= src- -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= SF @@ -32,7 +32,6 @@ Z80_DESC= Zilog Z80/Z180/GBZ80, Rabbit 2 CONFIGURE_ARGS= --disable-avr --disable-install-libbfd --disable-werror \ --disable-st7 docdir=${DOCSDIR} sdcc_cv_c_fms_extensions=no -NOPRECIOUSMAKEVARS= yes PORTDATA= * PORTDOCS= * WRKSRC= ${WRKDIR}/sdcc-${DISTVERSION} @@ -63,6 +62,27 @@ post-patch: @${REINPLACE_CMD} '/install:/s/:.*/:/' \ ${WRKSRC}/Makefile.in \ ${WRKSRC}/support/sdbinutils/libiberty/Makefile.in + @${REINPLACE_CMD} 's/[[:<:]]ARCH[[:>:]]/PICARCH/g' \ + ${WRKSRC}/device/lib/pic14/Makefile.common \ + ${WRKSRC}/device/lib/pic14/Makefile.in \ + ${WRKSRC}/device/lib/pic14/configure \ + ${WRKSRC}/device/lib/pic14/libm/Makefile.in \ + ${WRKSRC}/device/lib/pic14/libsdcc/enhanced/Makefile.in \ + ${WRKSRC}/device/lib/pic14/libsdcc/enhanced-no-xinst/Makefile.in \ + ${WRKSRC}/device/lib/pic14/libsdcc/regular/Makefile.in \ + ${WRKSRC}/device/lib/pic16/Makefile.in \ + ${WRKSRC}/device/lib/pic16/configure \ + ${WRKSRC}/device/lib/pic16/debug/Makefile.in \ + ${WRKSRC}/device/lib/pic16/libc/Makefile.in \ + ${WRKSRC}/device/lib/pic16/libio/Makefile.in \ + ${WRKSRC}/device/lib/pic16/libm/Makefile.in \ + ${WRKSRC}/device/lib/pic16/libsdcc/Makefile.in \ + ${WRKSRC}/device/lib/pic16/startup/Makefile.in \ + ${WRKSRC}/device/non-free/lib/pic14/Makefile.common.in \ + ${WRKSRC}/device/non-free/lib/pic14/Makefile.rules \ + ${WRKSRC}/device/non-free/lib/pic16/Makefile.in \ + ${WRKSRC}/device/non-free/lib/pic16/configure \ + ${WRKSRC}/device/non-free/lib/pic16/libdev/Makefile.in .if ! ${PORT_OPTIONS:MDOCS} @${REINPLACE_CMD} 's, [a-z-]*doc,,' \ ${WRKSRC}/Makefile.in \