Import algol68g-2.3.1 as lang/algol68g from wip/algol68g
The development of Algol played an important role in establishing computer science as an academic discipline. The Algol 68 Genie project preserves Algol 68 out of educational as well as scientific-historical interest, by making available Algol 68 Genie; a recent, well-featured implementation written from scratch. Algol 68 Genie is a practically full implementation of the language defined by the Revised Report. The implementation is a hybrid compiler-interpreter; units with considerable interpreter-overhead can optionally be compiled. Thanks for your work, Olaf Seibert.
This commit is contained in:
parent
7a44ccdb81
commit
ee2d6b0323
5 changed files with 64 additions and 0 deletions
9
lang/algol68g/DESCR
Normal file
9
lang/algol68g/DESCR
Normal file
|
@ -0,0 +1,9 @@
|
|||
The development of Algol played an important role in establishing
|
||||
computer science as an academic discipline. The Algol 68 Genie
|
||||
project preserves Algol 68 out of educational as well as
|
||||
scientific-historical interest, by making available Algol 68 Genie;
|
||||
a recent, well-featured implementation written from scratch. Algol
|
||||
68 Genie is a practically full implementation of the language
|
||||
defined by the Revised Report. The implementation is a hybrid
|
||||
compiler-interpreter; units with considerable interpreter-overhead
|
||||
can optionally be compiled.
|
22
lang/algol68g/Makefile
Normal file
22
lang/algol68g/Makefile
Normal file
|
@ -0,0 +1,22 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2011/10/11 12:43:50 ryoon Exp $
|
||||
#
|
||||
|
||||
DISTNAME= algol68g-2.3.1
|
||||
CATEGORIES= lang
|
||||
MASTER_SITES= http://jmvdveer.home.xs4all.nl/
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= olafs@cs.ru.nl
|
||||
HOMEPAGE= http://jmvdveer.home.xs4all.nl/algol.html
|
||||
COMMENT= Algol 68genie compiler
|
||||
LICENSE= gnu-gpl-v3
|
||||
|
||||
PKG_DESTDIR_SUPPORT= user-destdir
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_LANGUAGES= c
|
||||
|
||||
.include "options.mk"
|
||||
|
||||
.include "../../math/gsl/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
5
lang/algol68g/PLIST
Normal file
5
lang/algol68g/PLIST
Normal file
|
@ -0,0 +1,5 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2011/10/11 12:43:50 ryoon Exp $
|
||||
bin/a68g
|
||||
include/algol68g/a68g-config.h
|
||||
include/algol68g/a68g.h
|
||||
man/man1/a68g.1
|
5
lang/algol68g/distinfo
Normal file
5
lang/algol68g/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2011/10/11 12:43:50 ryoon Exp $
|
||||
|
||||
SHA1 (algol68g-2.3.1.tgz) = df775d65894740293c3972368b40c38d307d9036
|
||||
RMD160 (algol68g-2.3.1.tgz) = 551421e265bffb2fe7d8898ae405d1f00d5021a2
|
||||
Size (algol68g-2.3.1.tgz) = 503957 bytes
|
23
lang/algol68g/options.mk
Normal file
23
lang/algol68g/options.mk
Normal file
|
@ -0,0 +1,23 @@
|
|||
# $NetBSD: options.mk,v 1.1.1.1 2011/10/11 12:43:50 ryoon Exp $
|
||||
|
||||
PKG_OPTIONS_VAR= PKG_OPTIONS.a68g
|
||||
PKG_SUPPORTED_OPTIONS= plotutils pgsql
|
||||
PKG_SUGGESTED_OPTIONS= plotutils pgsql
|
||||
|
||||
.include "../../mk/bsd.options.mk"
|
||||
|
||||
.if !empty(PKG_OPTIONS:Mplotutils)
|
||||
. include "../../graphics/plotutils/buildlink3.mk"
|
||||
CONFIGURE_ARGS+= --with-plotutils
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-plotutils
|
||||
.endif
|
||||
|
||||
# It seems that when including PostgreSQL support it doesn't actually
|
||||
# need to have it installed at build time, just at run time.
|
||||
# So maybe this DEPENDS is undesirable.
|
||||
.if !empty(PKG_OPTIONS:Mpgsql)
|
||||
CONFIGURE_ARGS+= --with-pgsql
|
||||
.else
|
||||
CONFIGURE_ARGS+= --without-pgsql
|
||||
.endif
|
Loading…
Reference in a new issue