diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2007-03-22 09:41:43 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2007-03-22 09:41:43 +0000 |
commit | 6e61a7728d9a2859c4a547fb62d93f4c5754caa0 (patch) | |
tree | 4ee6b1faced4e7dc8eb194dd99ef279f0dbc4532 /textproc/scss | |
parent | 8af7d40d7ff438492f2d7c8e6fcbdda38d20f3f8 (diff) |
Notes
Diffstat (limited to 'textproc/scss')
-rw-r--r-- | textproc/scss/Makefile | 37 | ||||
-rw-r--r-- | textproc/scss/distinfo | 3 | ||||
-rw-r--r-- | textproc/scss/pkg-descr | 9 |
3 files changed, 49 insertions, 0 deletions
diff --git a/textproc/scss/Makefile b/textproc/scss/Makefile new file mode 100644 index 000000000000..2feaaed346eb --- /dev/null +++ b/textproc/scss/Makefile @@ -0,0 +1,37 @@ +# ex:ts=8 +# Ports collection makefile for: SCSS +# Date created: Mar 22, 2007 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= scss +PORTVERSION= 0.2.3 +CATEGORIES= textproc scheme +MASTER_SITES= ${MASTER_SITE_SAVANNAH} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ijliao@FreeBSD.org +COMMENT= A Scheme module for W3C Cascading Stylesheets recommendation + +RUN_DEPENDS= guile:${PORTSDIR}/lang/guile + +NO_BUILD= yes + +FILES= lexer.scm parser.scm scss.scm +PLIST_FILES= share/guile/scss/lexer.scm \ + share/guile/scss/parser.scm \ + share/guile/scss/scss.scm +PLIST_DIRS= share/guile/scss + +INFO= scss + +do-install: + @${MKDIR} ${PREFIX}/share/guile/scss +.for f in ${FILES} + @${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/guile/scss +.endfor + @${INSTALL_DATA} ${WRKSRC}/scss.info ${PREFIX}/info + +.include <bsd.port.mk> diff --git a/textproc/scss/distinfo b/textproc/scss/distinfo new file mode 100644 index 000000000000..05f2285e25ff --- /dev/null +++ b/textproc/scss/distinfo @@ -0,0 +1,3 @@ +MD5 (scss-0.2.3.tar.gz) = 1e2d3e38cd662bb191741bdf3ed54d66 +SHA256 (scss-0.2.3.tar.gz) = 06c29ed314d3d7c62cd19d29bcec4db73b16580d6f6e7ef8f177d1a5462bc47d +SIZE (scss-0.2.3.tar.gz) = 65633 diff --git a/textproc/scss/pkg-descr b/textproc/scss/pkg-descr new file mode 100644 index 000000000000..6d82255f84ea --- /dev/null +++ b/textproc/scss/pkg-descr @@ -0,0 +1,9 @@ +SCSS is a Scheme module for parsing, querying, and emitting style information +compatible with the W3C Cascading Stylesheets recommendation. While SCSS does +not itself provide any rendering functionality, it can provide style +information to applications and libraries that do. If used with XML documents +produced by SXML or SDOM, SCSS can accomodate the full range of selector types +described in the W3C recommendation; it can also match simple selectors against +strings when structured document information is not available. + +WWW: http://www.nongnu.org/scss/ |