diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2007-03-22 09:40:30 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2007-03-22 09:40:30 +0000 |
commit | 8af7d40d7ff438492f2d7c8e6fcbdda38d20f3f8 (patch) | |
tree | 6465b03b29575c1cc09483413f6fdddb3787196a /textproc/sdom | |
parent | 573a8ed142a9c76d4e6a51c0f40b6f85ef3642d2 (diff) | |
download | ports-8af7d40d7ff438492f2d7c8e6fcbdda38d20f3f8.tar.gz ports-8af7d40d7ff438492f2d7c8e6fcbdda38d20f3f8.zip |
add sdom 0.4.1
An implementation of the W3C DOM recommendation in Scheme
Notes
Notes:
svn path=/head/; revision=187994
Diffstat (limited to 'textproc/sdom')
-rw-r--r-- | textproc/sdom/Makefile | 37 | ||||
-rw-r--r-- | textproc/sdom/distinfo | 3 | ||||
-rw-r--r-- | textproc/sdom/pkg-descr | 6 |
3 files changed, 46 insertions, 0 deletions
diff --git a/textproc/sdom/Makefile b/textproc/sdom/Makefile new file mode 100644 index 000000000000..b76417ff42cc --- /dev/null +++ b/textproc/sdom/Makefile @@ -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> diff --git a/textproc/sdom/distinfo b/textproc/sdom/distinfo new file mode 100644 index 000000000000..fe96b8ba1fb6 --- /dev/null +++ b/textproc/sdom/distinfo @@ -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 diff --git a/textproc/sdom/pkg-descr b/textproc/sdom/pkg-descr new file mode 100644 index 000000000000..04fdd0691bb3 --- /dev/null +++ b/textproc/sdom/pkg-descr @@ -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/ |