mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
Add exslt, a community initiative to provide extensions to XSLT.
PR: 68821 Submitted by: Herve Quiroz <herve.quiroz@esil.univ-mrs.fr>
This commit is contained in:
parent
71e7d2029a
commit
5c1b9bab32
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=113273
@ -93,6 +93,7 @@
|
||||
SUBDIR += eruby
|
||||
SUBDIR += es-aspell
|
||||
SUBDIR += expat2
|
||||
SUBDIR += exslt
|
||||
SUBDIR += fdp-tools
|
||||
SUBDIR += filepp
|
||||
SUBDIR += fist
|
||||
|
38
textproc/exslt/Makefile
Normal file
38
textproc/exslt/Makefile
Normal file
@ -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>
|
2
textproc/exslt/distinfo
Normal file
2
textproc/exslt/distinfo
Normal file
@ -0,0 +1,2 @@
|
||||
MD5 (exslt-2003.10.24/all-exslt.zip) = 25cf4e5aae494405be3b4654c997db46
|
||||
SIZE (exslt-2003.10.24/all-exslt.zip) = 1152247
|
19
textproc/exslt/pkg-descr
Normal file
19
textproc/exslt/pkg-descr
Normal file
@ -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/
|
Loading…
Reference in New Issue
Block a user