Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Feb 2013 06:03:27 +0000 (UTC)
From:      Martin Wilke <miwi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r312483 - in head/textproc: . xmlgen
Message-ID:  <201302180603.r1I63R2R042703@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Mon Feb 18 06:03:27 2013
New Revision: 312483
URL: http://svnweb.freebsd.org/changeset/ports/312483

Log:
  xmlgen is a TCL package to write XML documents in Tcl.
  
  This XML code is expressed by TCL code, which is translated.
  
  Every tag is made into a markup command which takes attributes and
  the element's content as parameters and then prints the XML tagged
  content. Of course, the content again can contain markup commands.
  
  WWW: http://tclxml.sourceforge.net/
  
  PR:		ports/175391
  Submitted by:	Sébastien Santoro <dereckson@gmail.com>

Added:
  head/textproc/xmlgen/
  head/textproc/xmlgen/Makefile   (contents, props changed)
  head/textproc/xmlgen/distinfo   (contents, props changed)
  head/textproc/xmlgen/pkg-descr   (contents, props changed)
  head/textproc/xmlgen/pkg-plist   (contents, props changed)
Modified:
  head/textproc/Makefile

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Mon Feb 18 06:01:51 2013	(r312482)
+++ head/textproc/Makefile	Mon Feb 18 06:03:27 2013	(r312483)
@@ -1504,6 +1504,7 @@
     SUBDIR += xmldiff
     SUBDIR += xmlenc
     SUBDIR += xmlformat
+    SUBDIR += xmlgen
     SUBDIR += xmlindent
     SUBDIR += xmlppm
     SUBDIR += xmlprpr

Added: head/textproc/xmlgen/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/xmlgen/Makefile	Mon Feb 18 06:03:27 2013	(r312483)
@@ -0,0 +1,20 @@
+# Created by: Sébastien Santoro <dereckson@gmail.com>
+# $FreeBSD$
+
+PORTNAME=	xmlgen
+PORTVERSION=	1.4
+CATEGORIES=	textproc tcl
+MASTER_SITES=	SF/tclxml/${PORTNAME}/v${PORTVERSION}
+
+MAINTAINER=	dereckson@gmail.com
+COMMENT=	Write XML documents using Tcl
+
+USE_TCL=	83+
+NO_BUILD=	yes
+
+.include <bsd.port.pre.mk>
+
+do-install:
+	cd ${WRKSRC} && ${TCLSH} bras-sa PKGDIR=${PREFIX}/lib/${PORTNAME} DOCDIR=${PREFIX}/share/doc/${PORTNAME} CGIDIR=${PREFIX}/www/${PORTNAME} install
+
+.include <bsd.port.post.mk>

Added: head/textproc/xmlgen/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/xmlgen/distinfo	Mon Feb 18 06:03:27 2013	(r312483)
@@ -0,0 +1,2 @@
+SHA256 (xmlgen-1.4.tar.gz) = 2e35025db5ff9ec8867907618c91d49d72fe93f26956ec2043ce751bc3a7b654
+SIZE (xmlgen-1.4.tar.gz) = 59075

Added: head/textproc/xmlgen/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/xmlgen/pkg-descr	Mon Feb 18 06:03:27 2013	(r312483)
@@ -0,0 +1,9 @@
+xmlgen is a TCL package to write XML documents in Tcl.
+
+This XML code is expressed by TCL code, which is translated.
+
+Every tag is made into a markup command which takes attributes and
+the element's content as parameters and then prints the XML tagged
+content. Of course, the content again can contain markup commands.
+
+WWW: http://tclxml.sourceforge.net/

Added: head/textproc/xmlgen/pkg-plist
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/xmlgen/pkg-plist	Mon Feb 18 06:03:27 2013	(r312483)
@@ -0,0 +1,11 @@
+lib/xmlgen/htmlgen.tcl
+lib/xmlgen/pkgIndex.tcl
+lib/xmlgen/sidenav.tcl
+lib/xmlgen/tab.tcl
+lib/xmlgen/xmlgen.tcl
+share/doc/xmlgen/htmlgen.html
+share/doc/xmlgen/overview.html
+share/doc/xmlgen/sidenav.html
+share/doc/xmlgen/xmlgen.html
+@dirrm share/doc/xmlgen
+@dirrm lib/xmlgen



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201302180603.r1I63R2R042703>