1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-05 11:35:01 +00:00

Sid is a LL(1) parser generator that turns specifications of languages into

programs that recognise those languages. One of the aims of sid was to separate
the specification of the language to be recognised from the language that the
recogniser program is written in. For this reason, input to sid is split into
two components: output language independent information, and output language
dependent information.

PR:		ports/113128
Submitted by:	The Akuma Project
This commit is contained in:
Martin Wilke 2007-06-06 06:00:31 +00:00
parent f7ecbd0225
commit a3d38765f0
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=192872
4 changed files with 35 additions and 0 deletions

View File

@ -2088,6 +2088,7 @@
SUBDIR += shmap
SUBDIR += showgrammar
SUBDIR += shtool
SUBDIR += sid
SUBDIR += sigslot
SUBDIR += silc-toolkit
SUBDIR += simgear

25
devel/sid/Makefile Normal file
View File

@ -0,0 +1,25 @@
# New ports collection makefile for: sid
# Date created: 29 May 2007
# Whom: The Akuma Project
#
# $FreeBSD$
#
PORTNAME= sid
PORTVERSION= 1.10.0
CATEGORIES= devel
MASTER_SITES= http://www.akumaproject.org/download/
MAINTAINER= ports@akumaproject.org
COMMENT= A LL(1) parser generator
CONFLICTS= TenDRA-4.2*
INSTALL_TARGET= install DESTDIR=${PREFIX}
USE_PERL5= yes
MAN1= sid.1
PLIST_FILES= bin/sid
.include <bsd.port.mk>

3
devel/sid/distinfo Normal file
View File

@ -0,0 +1,3 @@
MD5 (sid-1.10.0.tar.gz) = dc40fc98f6ba0f5491da317d1a8eb562
SHA256 (sid-1.10.0.tar.gz) = 71119ab60014921d09805e936fe4fedda72d4245374acd3e616b7f2817b886e5
SIZE (sid-1.10.0.tar.gz) = 192137

6
devel/sid/pkg-descr Normal file
View File

@ -0,0 +1,6 @@
Sid is a LL(1) parser generator that turns specifications of languages into
programs that recognise those languages. One of the aims of sid was to separate
the specification of the language to be recognised from the language that the
recogniser program is written in. For this reason, input to sid is split into
two components: output language independent information, and output language
dependent information.