aboutsummaryrefslogtreecommitdiff
path: root/devel/sid
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2007-06-06 06:00:31 +0000
committerMartin Wilke <miwi@FreeBSD.org>2007-06-06 06:00:31 +0000
commita3d38765f0cc4da16115a8323e01182757a5281c (patch)
treec56e6fdbb7c8ff952cbd4bf6286678cd245264a7 /devel/sid
parentf7ecbd0225baf1822135ea261b73d6fb973a152a (diff)
downloadports-a3d38765f0cc4da16115a8323e01182757a5281c.tar.gz
ports-a3d38765f0cc4da16115a8323e01182757a5281c.zip
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
Notes
Notes: svn path=/head/; revision=192872
Diffstat (limited to 'devel/sid')
-rw-r--r--devel/sid/Makefile25
-rw-r--r--devel/sid/distinfo3
-rw-r--r--devel/sid/pkg-descr6
3 files changed, 34 insertions, 0 deletions
diff --git a/devel/sid/Makefile b/devel/sid/Makefile
new file mode 100644
index 000000000000..a4012bbb6e35
--- /dev/null
+++ b/devel/sid/Makefile
@@ -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>
diff --git a/devel/sid/distinfo b/devel/sid/distinfo
new file mode 100644
index 000000000000..4f0ec4b8d445
--- /dev/null
+++ b/devel/sid/distinfo
@@ -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
diff --git a/devel/sid/pkg-descr b/devel/sid/pkg-descr
new file mode 100644
index 000000000000..fbe8842802c9
--- /dev/null
+++ b/devel/sid/pkg-descr
@@ -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.