summaryrefslogtreecommitdiff
path: root/textproc/sdom/Makefile
diff options
context:
space:
mode:
authorYing-Chieh Liao <ijliao@FreeBSD.org>2007-03-22 09:40:30 +0000
committerYing-Chieh Liao <ijliao@FreeBSD.org>2007-03-22 09:40:30 +0000
commit8af7d40d7ff438492f2d7c8e6fcbdda38d20f3f8 (patch)
tree6465b03b29575c1cc09483413f6fdddb3787196a /textproc/sdom/Makefile
parentadd libruin 0.1.4 (diff)
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/Makefile')
-rw-r--r--textproc/sdom/Makefile37
1 files changed, 37 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>