summaryrefslogtreecommitdiff
path: root/textproc/exslt
diff options
context:
space:
mode:
authorOliver Eikemeier <eik@FreeBSD.org>2004-07-09 12:34:11 +0000
committerOliver Eikemeier <eik@FreeBSD.org>2004-07-09 12:34:11 +0000
commit5c1b9bab3211e231e2e0396eb4ad21a93e768448 (patch)
tree16f635d75d44283314ebd9b410181fb2512b18ea /textproc/exslt
parent*******************IMPORTANT******************* (diff)
Add exslt, a community initiative to provide extensions to XSLT.
PR: 68821 Submitted by: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
Notes
Notes: svn path=/head/; revision=113273
Diffstat (limited to 'textproc/exslt')
-rw-r--r--textproc/exslt/Makefile38
-rw-r--r--textproc/exslt/distinfo2
-rw-r--r--textproc/exslt/pkg-descr19
3 files changed, 59 insertions, 0 deletions
diff --git a/textproc/exslt/Makefile b/textproc/exslt/Makefile
new file mode 100644
index 000000000000..57a817f8a191
--- /dev/null
+++ b/textproc/exslt/Makefile
@@ -0,0 +1,38 @@
+# New ports collection makefile for: exslt
+# Date created: 2004-07-08
+# Whom: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
+#
+# $FreeBSD$
+#
+
+PORTNAME= exslt
+PORTVERSION= 2003.10.24
+CATEGORIES= textproc
+MASTER_SITES= http://www.exslt.org/
+DISTNAME= all-${PORTNAME}
+DIST_SUBDIR= ${PORTNAME}-${PORTVERSION}
+
+MAINTAINER= herve.quiroz@esil.univ-mrs.fr
+COMMENT= Community initiative extensions to XSLT
+
+USE_ZIP= yes
+NO_WRKSUBDIR= yes
+NO_BUILD= yes
+
+DATAFILES= base.css date dyn exsl func howto.html index.html math random regexp set str
+
+do-install:
+ @${ECHO_MSG} ">> Installing stylesheets and documentation in ${DATADIR}"
+ @${MKDIR} ${DATADIR}
+ @cd ${WRKSRC} && \
+ ${FIND} ${DATAFILES} -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \
+ ${FIND} ${DATAFILES} ! -type d -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \;
+
+post-install:
+ @${FIND} -s ${DATAFILES:S/^/${DATADIR}\//} ! -type d 2>/dev/null | \
+ ${SED} -ne 's,^${PREFIX}/,,p' >> ${TMPPLIST}
+ @${FIND} -s -d ${DATAFILES:S/^/${DATADIR}\//} -type d 2>/dev/null | \
+ ${SED} -ne 's,^${PREFIX}/,@dirrm ,p' >> ${TMPPLIST}
+ @${ECHO_CMD} '@dirrm ${DATADIR:S,^${PREFIX}/,,}' >> ${TMPPLIST}
+
+.include <bsd.port.mk>
diff --git a/textproc/exslt/distinfo b/textproc/exslt/distinfo
new file mode 100644
index 000000000000..d7edc658b961
--- /dev/null
+++ b/textproc/exslt/distinfo
@@ -0,0 +1,2 @@
+MD5 (exslt-2003.10.24/all-exslt.zip) = 25cf4e5aae494405be3b4654c997db46
+SIZE (exslt-2003.10.24/all-exslt.zip) = 1152247
diff --git a/textproc/exslt/pkg-descr b/textproc/exslt/pkg-descr
new file mode 100644
index 000000000000..3582e950f5c8
--- /dev/null
+++ b/textproc/exslt/pkg-descr
@@ -0,0 +1,19 @@
+EXSLT is a community initiative to provide extensions to XSLT. The extensions
+are broken down into a number of modules, listed below. Implementers of XSLT
+processors are encouraged to use these extensions, so that your stylesheets can
+be more portable. If your XSLT processor doesn't support a particular
+extension, you will find packages that you can use to provide functions or
+templates for your stylesheets.
+
+- Common: common, basic extension elements and functions.
+- Math: facilities to do with maths.
+- Sets: facilities to do with set manipulation.
+- Functions: allow users to define their own functions for use in expressions
+ and patterns in XSLT.
+- Dates and Times: date and time-related extension elements and functions.
+- Strings: facilities to do with string manipulation.
+- Regular Expressions: facilities to do with regular expressions.
+- Dynamic: dynamic evaluation of strings containing XPath expressions.
+- Random: facilities to do with randomness.
+
+WWW: http://www.exslt.org/