add sdom 0.4.1

An implementation of the W3C DOM recommendation in Scheme
This commit is contained in:
Ying-Chieh Liao 2007-03-22 09:40:30 +00:00
parent 573a8ed142
commit 8af7d40d7f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=187994
4 changed files with 47 additions and 0 deletions

View file

@ -863,6 +863,7 @@
SUBDIR += sdcv
SUBDIR += sdf
SUBDIR += sdocbook-xml
SUBDIR += sdom
SUBDIR += senna
SUBDIR += sgmlformat
SUBDIR += sgmls

37
textproc/sdom/Makefile Normal file
View file

@ -0,0 +1,37 @@
# ex:ts=8
# Ports collection makefile for: SDOM
# Date created: Mar 22, 2007
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= sdom
PORTVERSION= 0.4.1
CATEGORIES= textproc scheme
MASTER_SITES= ${MASTER_SITE_SAVANNAH}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ijliao@FreeBSD.org
COMMENT= An implementation of the W3C DOM recommendation in Scheme
RUN_DEPENDS= ${LOCALBASE}/share/guile/site/config/load.scm:${PORTSDIR}/devel/guile-lib
NO_BUILD= yes
FILES= core.scm events.scm ls.scm
PLIST_FILES= share/guile/sdom/core.scm \
share/guile/sdom/events.scm \
share/guile/sdom/ls.scm
PLIST_DIRS= share/guile/sdom
INFO= sdom
do-install:
@${MKDIR} ${PREFIX}/share/guile/sdom
.for f in ${FILES}
@${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/guile/sdom
.endfor
@${INSTALL_DATA} ${WRKSRC}/sdom.info ${PREFIX}/info
.include <bsd.port.mk>

3
textproc/sdom/distinfo Normal file
View file

@ -0,0 +1,3 @@
MD5 (sdom-0.4.1.tar.gz) = 45217e5ff65d0de73a6fa021e56ea36a
SHA256 (sdom-0.4.1.tar.gz) = e4b2ba09bae4f1003766d78998ff69a038216bd9a6fa7d17bf78b6ba1e4cd49b
SIZE (sdom-0.4.1.tar.gz) = 81499

6
textproc/sdom/pkg-descr Normal file
View file

@ -0,0 +1,6 @@
SDOM is an implementation of the W3C DOM recommendation (Level 3), including
support for event handling, in the Scheme programming language. SDOM builds
upon the work of Oleg Kiselyov's SXML project and aims to be fully compatible
with the SXML API.
WWW: http://www.nongnu.org/sdom/