From owner-svn-ports-all@freebsd.org Mon Nov 21 21:12:10 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 C1A21C4D87A; Mon, 21 Nov 2016 21:12:10 +0000 (UTC) (envelope-from acm@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 76D5ECC6; Mon, 21 Nov 2016 21:12:10 +0000 (UTC) (envelope-from acm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uALLC9AU056360; Mon, 21 Nov 2016 21:12:09 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uALLC9G7056357; Mon, 21 Nov 2016 21:12:09 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201611212112.uALLC9G7056357@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Mon, 21 Nov 2016 21:12:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426756 - in head/lang: fpc fpc-rtl-extra 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: Mon, 21 Nov 2016 21:12:10 -0000 Author: acm Date: Mon Nov 21 21:12:09 2016 New Revision: 426756 URL: https://svnweb.freebsd.org/changeset/ports/426756 Log: - Install serial .ppu and .o files - Bump fpc-rtl-extra PORTREVISION Modified: head/lang/fpc-rtl-extra/Makefile head/lang/fpc-rtl-extra/pkg-plist head/lang/fpc/Makefile.units Modified: head/lang/fpc-rtl-extra/Makefile ============================================================================== --- head/lang/fpc-rtl-extra/Makefile Mon Nov 21 21:07:30 2016 (r426755) +++ head/lang/fpc-rtl-extra/Makefile Mon Nov 21 21:12:09 2016 (r426756) @@ -1,6 +1,7 @@ # $FreeBSD$ CATEGORIES= lang +PORTREVISION= 1 PKGNAMESUFFIX= -rtl-extra MAINTAINER= freebsd-fpc@FreeBSD.org Modified: head/lang/fpc-rtl-extra/pkg-plist ============================================================================== --- head/lang/fpc-rtl-extra/pkg-plist Mon Nov 21 21:07:30 2016 (r426755) +++ head/lang/fpc-rtl-extra/pkg-plist Mon Nov 21 21:12:09 2016 (r426756) @@ -9,6 +9,8 @@ lib/fpc/%%PORTVERSION%%/units/%%BUILDNAM lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/objects.ppu lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/printer.o lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/printer.ppu +lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/serial.o +lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/serial.ppu lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/sockets.o lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/sockets.ppu lib/fpc/%%PORTVERSION%%/units/%%BUILDNAME%%/rtl-extra/ucomplex.o Modified: head/lang/fpc/Makefile.units ============================================================================== --- head/lang/fpc/Makefile.units Mon Nov 21 21:07:30 2016 (r426755) +++ head/lang/fpc/Makefile.units Mon Nov 21 21:12:09 2016 (r426756) @@ -55,3 +55,7 @@ post-patch: @${REINPLACE_CMD} -e 's|packages_${OPSYS:tl}=fcl-net fcl-web|packages_${OPSYS:tl}=fcl-net|g' \ ${WRKDIR}/${WRKUNITDIR}/Makefile.fpc .endif +.if ${PKGNAMESUFFIX} == "-rtl-extra" + @${REINPLACE_CMD} -e 's|android,linux,|android,linux,freebsd,dragonfly,|g' \ + ${WRKDIR}/${WRKUNITDIR}/fpmake.pp +.endif