diff options
author | Oliver Eikemeier <eik@FreeBSD.org> | 2004-07-09 12:34:11 +0000 |
---|---|---|
committer | Oliver Eikemeier <eik@FreeBSD.org> | 2004-07-09 12:34:11 +0000 |
commit | 5c1b9bab3211e231e2e0396eb4ad21a93e768448 (patch) | |
tree | 16f635d75d44283314ebd9b410181fb2512b18ea /textproc | |
parent | 71e7d2029a95e74b53231975c8e27c57a327b304 (diff) | |
download | ports-5c1b9bab3211e231e2e0396eb4ad21a93e768448.tar.gz ports-5c1b9bab3211e231e2e0396eb4ad21a93e768448.zip |
Notes
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/exslt/Makefile | 38 | ||||
-rw-r--r-- | textproc/exslt/distinfo | 2 | ||||
-rw-r--r-- | textproc/exslt/pkg-descr | 19 |
4 files changed, 60 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index f0329b6d79ca..8faa5cc83682 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -93,6 +93,7 @@ SUBDIR += eruby SUBDIR += es-aspell SUBDIR += expat2 + SUBDIR += exslt SUBDIR += fdp-tools SUBDIR += filepp SUBDIR += fist 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/ |