pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/textproc/xslide Initial import of xslide, an XSL major...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/3a2b42aea4ea
branches:  trunk
changeset: 460735:3a2b42aea4ea
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Wed Sep 03 14:55:00 2003 +0000

description:
Initial import of xslide, an XSL major mode for emacs.

* FEATURES
 - XSL customization group for setting some variables
 - Initial stylesheet inserted into empty XSL buffers;
 - "Template" menu for jumping to template rules, named templates, key
   declarations, and attribute-set declarations in the buffer;
 - `xsl-process' function that runs an XSL processor and collects the
   output;
 - Predefined command line templates and error regexps for Java and
   Windows executable versions of both XT and Saxon;
 - Font lock highlighting so that the important information stands
   out;
 - `xsl-complete' function for inserting element and attribute names;
 - `xsl-insert-tag' function for inserting matching start- and
    end-tags;
 - Automatic completion of end-tags;
 - Automatic indenting of elements with user-definable indentation
   step;
 - `xsl-if-to-choose' converts <xsl:if> to <xsl:choose> with
   nested <xsl:when>; and
 - Comprehensive abbreviations table to further ease typing.

diffstat:

 textproc/xslide/DESCR    |  22 ++++++++++++++++++++++
 textproc/xslide/Makefile |  41 +++++++++++++++++++++++++++++++++++++++++
 textproc/xslide/PLIST    |  15 +++++++++++++++
 textproc/xslide/distinfo |   4 ++++
 4 files changed, 82 insertions(+), 0 deletions(-)

diffs (98 lines):

diff -r 33b78bee040a -r 3a2b42aea4ea textproc/xslide/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/xslide/DESCR     Wed Sep 03 14:55:00 2003 +0000
@@ -0,0 +1,22 @@
+XSL major mode for emacs.
+
+* FEATURES
+ - XSL customization group for setting some variables
+ - Initial stylesheet inserted into empty XSL buffers;
+ - "Template" menu for jumping to template rules, named templates, key
+   declarations, and attribute-set declarations in the buffer;
+ - `xsl-process' function that runs an XSL processor and collects the
+   output;
+ - Predefined command line templates and error regexps for Java and
+   Windows executable versions of both XT and Saxon;
+ - Font lock highlighting so that the important information stands
+   out;
+ - `xsl-complete' function for inserting element and attribute names;
+ - `xsl-insert-tag' function for inserting matching start- and
+    end-tags;
+ - Automatic completion of end-tags;
+ - Automatic indenting of elements with user-definable indentation
+   step;
+ - `xsl-if-to-choose' converts <xsl:if> to <xsl:choose> with
+   nested <xsl:when>; and
+ - Comprehensive abbreviations table to further ease typing.
diff -r 33b78bee040a -r 3a2b42aea4ea textproc/xslide/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/xslide/Makefile  Wed Sep 03 14:55:00 2003 +0000
@@ -0,0 +1,41 @@
+# $NetBSD: Makefile,v 1.1.1.1 2003/09/03 14:55:00 wiz Exp $
+#
+
+DISTNAME=              xslide-0.2.2
+CATEGORIES=            textproc
+MASTER_SITES=          ${MASTER_SITE_SOURCEFORGE:=xslide/}
+
+MAINTAINER=            wiz%NetBSD.org@localhost
+HOMEPAGE=              http://xslide.sourceforge.net/
+COMMENT=               XSL major mode for emacs
+
+USE_BUILDLINK2=                yes
+
+.include "../../mk/emacs.mk"
+
+.if ${EMACS_FLAVOR} == "emacs"
+EMACS= emacs
+.else
+EMACS= xemacs
+.endif
+
+SRCS=  xslide-abbrev.el xslide-data.el xslide-font.el xslide-process.el xslide.el
+
+do-build:
+       cd ${WRKSRC} &&                                                 \
+       for f in ${SRCS}; do                                            \
+       ${EMACS} --no-init-file --no-site-file -batch                   \
+               -l font-lock -l sendmail                                \
+               -l xslide-data.el -l xslide-abbrev.el -l xslide-font.el \
+               -l xslide-process.el -l xslide.el                       \
+               -f batch-byte-compile $$f;                              \
+       done
+
+do-install:
+       ${INSTALL_DATA_DIR} ${EMACS_LISPPREFIX}/${PKGBASE}
+       cd ${WRKSRC} && ${INSTALL_DATA} ${SRCS} ${SRCS:.el=.elc} ${EMACS_LISPPREFIX}/${PKGBASE}
+       ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/xslide
+       ${INSTALL_DATA} ${WRKSRC}/README.TXT ${PREFIX}/share/doc/xslide
+       ${INSTALL_DATA} ${WRKSRC}/dot_emacs ${PREFIX}/share/doc/xslide
+
+.include "../../mk/bsd.pkg.mk"
diff -r 33b78bee040a -r 3a2b42aea4ea textproc/xslide/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/xslide/PLIST     Wed Sep 03 14:55:00 2003 +0000
@@ -0,0 +1,15 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2003/09/03 14:55:00 wiz Exp $
+${EMACS_LISPPREFIX}/xslide/xslide-abbrev.el
+${EMACS_LISPPREFIX}/xslide/xslide-abbrev.elc
+${EMACS_LISPPREFIX}/xslide/xslide-data.el
+${EMACS_LISPPREFIX}/xslide/xslide-data.elc
+${EMACS_LISPPREFIX}/xslide/xslide-font.el
+${EMACS_LISPPREFIX}/xslide/xslide-font.elc
+${EMACS_LISPPREFIX}/xslide/xslide-process.el
+${EMACS_LISPPREFIX}/xslide/xslide-process.elc
+${EMACS_LISPPREFIX}/xslide/xslide.el
+${EMACS_LISPPREFIX}/xslide/xslide.elc
+share/doc/xslide/README.TXT
+share/doc/xslide/dot_emacs
+@dirrm share/doc/xslide
+@dirrm ${EMACS_LISPPREFIX}/xslide
diff -r 33b78bee040a -r 3a2b42aea4ea textproc/xslide/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/textproc/xslide/distinfo  Wed Sep 03 14:55:00 2003 +0000
@@ -0,0 +1,4 @@
+$NetBSD: distinfo,v 1.1.1.1 2003/09/03 14:55:00 wiz Exp $
+
+SHA1 (xslide-0.2.2.tar.gz) = 1662a8f8e55a7842b77030d9e1326e13dd2a45fe
+Size (xslide-0.2.2.tar.gz) = 23469 bytes



Home | Main Index | Thread Index | Old Index