From owner-svn-ports-all@freebsd.org Tue Jun 25 15:55:24 2019 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 32D3F15D02E4; Tue, 25 Jun 2019 15:55:24 +0000 (UTC) (envelope-from danfe@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 CBE9B69FA1; Tue, 25 Jun 2019 15:55:23 +0000 (UTC) (envelope-from danfe@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 9AA9E1A923; Tue, 25 Jun 2019 15:55:23 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5PFtNiX066917; Tue, 25 Jun 2019 15:55:23 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5PFtM9j066913; Tue, 25 Jun 2019 15:55:22 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201906251555.x5PFtM9j066913@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Tue, 25 Jun 2019 15:55:22 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r505095 - in head/lang: . gnu-apl X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/lang: . gnu-apl X-SVN-Commit-Revision: 505095 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: CBE9B69FA1 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.965,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_HAM_LONG(-1.00)[-1.000,0] X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Tue, 25 Jun 2019 15:55:24 -0000 Author: danfe Date: Tue Jun 25 15:55:22 2019 New Revision: 505095 URL: https://svnweb.freebsd.org/changeset/ports/505095 Log: Add a port of GNU APL, free interpreter for the APL programming language. WWW: https://www.gnu.org/software/apl/ Added: head/lang/gnu-apl/ head/lang/gnu-apl/Makefile (contents, props changed) head/lang/gnu-apl/distinfo (contents, props changed) head/lang/gnu-apl/pkg-descr (contents, props changed) head/lang/gnu-apl/pkg-plist (contents, props changed) Modified: head/lang/Makefile Modified: head/lang/Makefile ============================================================================== --- head/lang/Makefile Tue Jun 25 15:37:34 2019 (r505094) +++ head/lang/Makefile Tue Jun 25 15:55:22 2019 (r505095) @@ -125,6 +125,7 @@ SUBDIR += gnatdroid-sysroot SUBDIR += gnatdroid-sysroot-x86 SUBDIR += gnatdroid-x86 + SUBDIR += gnu-apl SUBDIR += gnu-cobol SUBDIR += gnustep-base SUBDIR += go Added: head/lang/gnu-apl/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gnu-apl/Makefile Tue Jun 25 15:55:22 2019 (r505095) @@ -0,0 +1,49 @@ +# Created by: Alexey Dokuchaev +# $FreeBSD$ + +PORTNAME= apl +PORTVERSION= 1.8 +CATEGORIES= lang +MASTER_SITES= GNU +PKGNAMEPREFIX= gnu- + +MAINTAINER= danfe@FreeBSD.org +COMMENT= Free interpreter for APL programming language + +LICENSE= GPLv3+ + +LIB_DEPENDS= libfftw3.so:math/fftw3 + +USES= gmake libtool localbase +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +INSTALL_TARGET= install-strip + +INFO= apl libapl +PORTDOCS= * + +OPTIONS_DEFINE= DOCS GTK3 LIBAPL PCRE SQLITE +OPTIONS_SUB= yes + +LIBAPL_DESC= Build libapl.so instead of executable + +GTK3_USES= pkgconfig gnome +GTK3_USE= GNOME=gtk30 +GTK3_CONFIGURE_WITH= gtk3 + +PCRE_LIB_DEPENDS= libpcre2-8.so:devel/pcre2 +PCRE_CONFIGURE_WITH= pcre=${LOCALBASE} + +SQLITE_LIB_DEPENDS= libsqlite3.so:databases/sqlite3 +SQLITE_CONFIGURE_WITH= sqlite3=${LOCALBASE} + +post-patch: + @${REINPLACE_CMD} -e '25s,^,#include ,' \ + ${WRKSRC}/src/Common.hh + @${REINPLACE_CMD} -e 's,bind(,::&,' \ + ${WRKSRC}/src/emacs_mode/TcpListener.cc \ + ${WRKSRC}/src/emacs_mode/UnixSocketListener.cc + @${REINPLACE_CMD} -e 's,POLLRDHUP,POLLHUP,' \ + ${WRKSRC}/src/Quad_GTK.cc + +.include Added: head/lang/gnu-apl/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gnu-apl/distinfo Tue Jun 25 15:55:22 2019 (r505095) @@ -0,0 +1,3 @@ +TIMESTAMP = 1561298598 +SHA256 (apl-1.8.tar.gz) = 144f4c858a0d430ce8f28be90a35920dd8e0951e56976cb80b55053fa0d8bbcb +SIZE (apl-1.8.tar.gz) = 3565018 Added: head/lang/gnu-apl/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gnu-apl/pkg-descr Tue Jun 25 15:55:22 2019 (r505095) @@ -0,0 +1,14 @@ +GNU APL is a free interpreter for the programming language APL. + +The APL interpreter is an (almost) complete implementation of ISO +standard 13751 aka Programming Language APL, Extended. + +The APL interpreter has implemented: + + - nested arrays and related functions + - complex numbers, and + - a shared variable interface + +In addition, GNU APL can be scripted. + +WWW: https://www.gnu.org/software/apl/ Added: head/lang/gnu-apl/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/lang/gnu-apl/pkg-plist Tue Jun 25 15:55:22 2019 (r505095) @@ -0,0 +1,56 @@ +bin/AP100 +bin/AP210 +bin/APserver +%%NO_LIBAPL%%bin/apl +%%GTK3%%bin/Gtk_server +etc/gnu-apl.d/keyboard1.txt +etc/gnu-apl.d/parallel_thresholds +etc/gnu-apl.d/preferences +%%LIBAPL%%include/apl/libapl.h +%%LIBAPL%%lib/apl/libapl.a +%%LIBAPL%%lib/apl/libapl.so +lib/apl/lib_file_io.a +lib/apl/lib_file_io.so +lib/apl/lib_sql.a +lib/apl/lib_sql.so +lib/apl/lib_sql.so.0 +lib/apl/lib_sql.so.0.0.0 +lib/apl/lib_template_F0.a +lib/apl/lib_template_F0.so +lib/apl/lib_template_F12.a +lib/apl/lib_template_F12.so +lib/apl/lib_template_OP1.a +lib/apl/lib_template_OP1.so +lib/apl/lib_template_OP2.a +lib/apl/lib_template_OP2.so +lib/apl/libemacs.a +lib/apl/libemacs.so +lib/apl/libemacs.so.0 +lib/apl/libemacs.so.0.0.0 +lib/apl/workspaces/APL_CGI.apl +lib/apl/workspaces/RUBIK.apl +lib/apl/workspaces/SCRIPT.apl +lib/apl/workspaces/ScalarBenchmark.apl +lib/apl/workspaces/gnuplot.apl +lib/apl/wslib3/meta.apl +lib/apl/wslib4/dummy.apl +lib/apl/wslib5/APLComponentFiles/AUTHORS +lib/apl/wslib5/APLComponentFiles/CF_README.txt +lib/apl/wslib5/APLComponentFiles/ComponentFiles.apl +lib/apl/wslib5/APLComponentFiles/LAST_GIT_PULL +lib/apl/wslib5/APLComponentFiles/LICENSE +lib/apl/wslib5/APLComponentFiles/README.md +lib/apl/wslib5/APLComponentFiles/README_FIRST.txt +lib/apl/wslib5/APLComponentFiles/SQL_README.txt +lib/apl/wslib5/FILE_IO.apl +lib/apl/wslib5/HTML.apl +lib/apl/wslib5/SQL.apl +lib/apl/wslib5/iso-apl-cf/AUTHORS +lib/apl/wslib5/iso-apl-cf/LAST_GIT_PULL +lib/apl/wslib5/iso-apl-cf/README.md +lib/apl/wslib5/iso-apl-cf/_control_.apl +lib/apl/wslib5/iso-apl-cf/_metadata_ +lib/apl/wslib5/iso-apl-cf/iso_cf.apl +lib/apl/wslib5/iso-apl-cf/perf.apl +lib/apl/wslib5/iso-apl-cf/test.apl +man/man1/apl.1.gz