1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Add freetxl, a unique programming language specifically designed to support

computer software analysis and source transformation tasks. It is the
evolving result of more than fifteen years of concentrated research on
rule-based structural transformation as a paradigm for the rapid solution
of complex computing problems.

PR:		ports/54617
Submitted by:	Ryan Thompson <ryan@sasknow.com>
This commit is contained in:
Pav Lucistnik 2003-12-14 21:50:44 +00:00
parent 676f8af9eb
commit ea25dbefac
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=95816
5 changed files with 83 additions and 0 deletions

View File

@ -54,6 +54,7 @@
SUBDIR += forth
SUBDIR += fpc
SUBDIR += fpl
SUBDIR += freetxl
SUBDIR += gauche
SUBDIR += gawk
SUBDIR += gcc27

52
lang/freetxl/Makefile Normal file
View File

@ -0,0 +1,52 @@
# New ports collection makefile for: freetxl
# Date created: 25 April 2003
# Whom: Ryan Thompson <ryan@sasknow.com>
#
# $FreeBSD$
#
PORTNAME= freetxl
PORTVERSION= 10.3
CATEGORIES= lang
MASTER_SITES= ftp://ftp.sasknow.com/pub/txl/
DISTNAME= txl${PORTVERSION}.linux
MAINTAINER= ryan@sasknow.com
COMMENT= The TXL Programming Language (transformation by example)
USE_LINUX= yes
STRIP=
NO_BUILD= yes
MAN1= txl.1 txlc.1 txldb.1 txlp.1
PORTDOCS= 00README.txt COPYRIGHT.txt Documents.html Examples.html \
FILES.txt Learning.html Support.html
do-install:
${INSTALL_PROGRAM} \
${WRKSRC}/bin/txl \
${WRKSRC}/bin/txlc \
${WRKSRC}/bin/txldb \
${WRKSRC}/bin/txlp \
${PREFIX}/bin
${INSTALL_DATA} \
${WRKSRC}/lib/txlapr.x \
${WRKSRC}/lib/txlcvt.x \
${WRKSRC}/lib/txlmain.o \
${WRKSRC}/lib/txlpf.x \
${WRKSRC}/lib/txlvm.o \
${PREFIX}/lib
.if !defined(NO_INSTALL_MANPAGES)
.for file in ${MAN1}
${INSTALL_MAN} ${WRKSRC}/man/man1/${file} ${PREFIX}/man/man1/
.endfor
.endif
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.include <bsd.port.mk>

1
lang/freetxl/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (txl10.3.linux.tar.gz) = 6d00a63b6523fb7738b3b539f940e7ed

20
lang/freetxl/pkg-descr Normal file
View File

@ -0,0 +1,20 @@
TXL is a unique programming language specifically designed to support computer
software analysis and source transformation tasks. It is the evolving result
of more than fifteen years of concentrated research on rule-based structural
transformation as a paradigm for the rapid solution of complex computing
problems.
The TXL programming language is a hybrid functional / rule-based language with
unification, implied iteration and deep pattern match.
Each TXL program has two components:
* A Description of the Structures to be Transformed
Specified as an EBNF grammar, in context-free ambiguous form.
* A Set of Structural Transformation Rules
Specified by example, using pattern/replacement pairs.
WWW: http://www.txl.ca/
- Ryan Thompson <ryan@sasknow.com>

9
lang/freetxl/pkg-plist Normal file
View File

@ -0,0 +1,9 @@
bin/txl
bin/txlc
bin/txldb
bin/txlp
lib/txlapr.x
lib/txlcvt.x
lib/txlmain.o
lib/txlpf.x
lib/txlvm.o