NOTICE: This package has been removed from pkgsrc

./textproc/xalan-c, XSLT processor of the Apache Project

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 1.10nb3, Package name: xalan-c-1.10nb3, Maintainer: pkgsrc-users

Xalan (named after a rare musical instrument) fully implements the W3C
Recommendation 16 November 1999 XSL Transformations (XSLT) Version 1.0
and the XML Path Language (XPath) Version 1.0. XSLT is the first part
of the XSL stylesheet language for XML. It includes the XSL Transformation
vocabulary and XPath, a language for addressing parts of XML documents.

This package provide the C++ version of Xalan.


Required to run:
[textproc/xerces-c] [textproc/icu]

Required to build:
[devel/gmake]

Master sites:

SHA1: 3fc63045048176e0ab00ce8aa0d15b2c1e5d646b
RMD160: 537ba0be6a14e47eb4453c2d813b31ec416835ab
Filesize: 1518.496 KB

Version history: (Expand)


CVS history: (Expand)


   2011-02-23 09:37:42 by Adam Ciarcinski | Files touched by this commit (10) | Package removed
Log message:
Removed textproc/xalan-c
   2010-12-17 08:36:14 by OBATA Akio | Files touched by this commit (36)
Log message:
Bump PKGREVISION from icu shlib major bump.
   2009-08-12 04:31:23 by OBATA Akio | Files touched by this commit (54)
Log message:
recursive bump for icu shlib version change except already done.
   2009-06-30 02:07:26 by Joerg Sonnenberger | Files touched by this commit (159)
Log message:
Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build with
MAKE_JOBS=2 and worked without.
   2009-06-14 20:17:35 by Joerg Sonnenberger | Files touched by this commit (218)
Log message:
Remove @dirrm entries from PLISTs
   2009-05-08 14:30:47 by Hasso Tepper | Files touched by this commit (4)
Log message:
Make it build on DragonFly.
   2009-03-25 23:37:16 by Havard Eidnes | Files touched by this commit (47) | Package updated
Log message:
Bump PKGREVISION following the update of textproc/icu, and the
corresponding change of ABI.

OK'ed by wiz@ (as was the textproc/icu update).
   2009-03-20 20:25:55 by Joerg Sonnenberger | Files touched by this commit (1252)
Log message:
Simply and speed up buildlink3.mk files and processing.
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.