From owner-svn-ports-head@freebsd.org Thu Aug 15 16:14:23 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 7DF79ADAC5; Thu, 15 Aug 2019 16:14:23 +0000 (UTC) (envelope-from acm@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 468Wjq2gVRz42Pm; Thu, 15 Aug 2019 16:14:23 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 56EA91B202; Thu, 15 Aug 2019 16:14:23 +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 x7FGENn7098584; Thu, 15 Aug 2019 16:14:23 GMT (envelope-from acm@FreeBSD.org) Received: (from acm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x7FGEMNk098581; Thu, 15 Aug 2019 16:14:22 GMT (envelope-from acm@FreeBSD.org) Message-Id: <201908151614.x7FGEMNk098581@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: acm set sender to acm@FreeBSD.org using -f From: Jose Alonso Cardenas Marquez Date: Thu, 15 Aug 2019 16:14:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r509005 - in head/lang: . fpc-source X-SVN-Group: ports-head X-SVN-Commit-Author: acm X-SVN-Commit-Paths: in head/lang: . fpc-source X-SVN-Commit-Revision: 509005 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Aug 2019 16:14:23 -0000 Author: acm Date: Thu Aug 15 16:14:22 2019 New Revision: 509005 URL: https://svnweb.freebsd.org/changeset/ports/509005 Log: - New port: lang/fpc-source Originally named FPK-Pascal, the Free Pascal compiler is a 32 bit and 64 bit Turbo Pascal compatible Pascal compiler for DOS, Linux, Win32, OS/2, (based on an older version) the AmigaOS, FreeBSD/ELF, BeOS, Darwin(OSX) and others (source code). WWW: https://www.freepascal.org/ Added: head/lang/fpc-source/ head/lang/fpc-source/Makefile (contents, props changed) head/lang/fpc-source/distinfo (contents, props changed) head/lang/fpc-source/pkg-descr (contents, props changed) Modified: head/lang/Makefile Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Thu Aug 15 16:11:27 2019 (r509004) +++ head/lang/Makefile Thu Aug 15 16:14:22 2019 (r509005) @@ -91,6 +91,7 @@ SUBDIR += fpc-rtl-extra SUBDIR += fpc-rtl-objpas SUBDIR += fpc-rtl-unicode + SUBDIR += fpc-source SUBDIR += fpc-units SUBDIR += fpc-utils SUBDIR += fsharp Added: head/lang/fpc-source/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/fpc-source/Makefile Thu Aug 15 16:14:22 2019 (r509005) @@ -0,0 +1,33 @@ +# $FreeBSD$ + +PORTNAME= fpc +PORTVERSION= 3.0.4 +DISTVERSIONSUFFIX=.source +CATEGORIES= lang +MASTER_SITES= ftp://ftp.freepascal.org/pub/fpc/dist/${PORTVERSION}/source/ \ + ftp://planetmirror.com/pub/fpc/dist/${PORTVERSION}/source/ \ + ftp://ftp.jp.freepascal.org/mirror/fpc/dist/${PORTVERSION}/source/ \ + ftp://freepascal.stack.nl/pub/fpc/dist/${PORTVERSION}/source/ \ + ftp://ftp.no.freepascal.org/pub/fpc/dist/${PORTVERSION}/source/ \ + ftp://ftp.us.freepascal.org/pub/fpc/dist/${PORTVERSION}/source/ \ + SF/freepascal/Source/${PORTVERSION} +PKGNAMESUFFIX= -source +DIST_SUBDIR= freepascal + +MAINTAINER= acm@FreeBSD.org +COMMENT= Free Pascal compiler with Turbo and Delphi (source) + +ONLY_FOR_ARCHS= amd64 i386 +NO_BUILD= yes + +PORTDATA= * + +PATCHDIR= ${PORTSDIR}/lang/fpc/files +DATADIR= ${PREFIX}/share/${PORTNAME}${PKGNAMESUFFIX}-${PORTVERSION} +WRKSRC= ${WRKDIR}/${PORTNAME}-${DISTVERSION} + +do-install: + (cd ${WRKSRC} && ${COPYTREE_SHARE} . \ + ${STAGEDIR}${DATADIR}) + +.include Added: head/lang/fpc-source/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/fpc-source/distinfo Thu Aug 15 16:14:22 2019 (r509005) @@ -0,0 +1,3 @@ +TIMESTAMP = 1565829645 +SHA256 (freepascal/fpc-3.0.4.source.tar.gz) = 69b3b7667b72b6759cf27226df5eb54112ce3515ff5efb79d95ac14bac742845 +SIZE (freepascal/fpc-3.0.4.source.tar.gz) = 40347617 Added: head/lang/fpc-source/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/fpc-source/pkg-descr Thu Aug 15 16:14:22 2019 (r509005) @@ -0,0 +1,6 @@ +Originally named FPK-Pascal, the Free Pascal compiler is a 32 bit and 64 bit +Turbo Pascal compatible Pascal compiler for DOS, Linux, Win32, OS/2, +(based on an older version) the AmigaOS, FreeBSD/ELF, BeOS, Darwin(OSX) +and others (source code). + +WWW: https://www.freepascal.org/