Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Feb 2013 09:40:48 +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: r311933 - in head/textproc: . libflate
Message-ID:  <201302080940.r189em07036093@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: miwi
Date: Fri Feb  8 09:40:48 2013
New Revision: 311933
URL: http://svnweb.freebsd.org/changeset/ports/311933

Log:
  Flate is a template library used to deal with html code in CGI applications.
  The library includes C and Perl support. All html code is put in an external
  file (the template) and printed using the library functions: variables, zones
  (parts to be displayed or not) and tables (parts to be displayed 0 to n times).
  Using this method you don't need to modify/recompile your application when
  modifying html code, printing order doesn't matter in your CGI code, and your
  CGI code is much cleaner.
  
  WWW: http://flate.dead-inside.org/
  
  PR:		ports/175559
  Submitted by:	Gvozdikov Veniamin <g.veniamin@googlemail.com>

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

Modified: head/textproc/Makefile
==============================================================================
--- head/textproc/Makefile	Fri Feb  8 09:38:17 2013	(r311932)
+++ head/textproc/Makefile	Fri Feb  8 09:40:48 2013	(r311933)
@@ -364,6 +364,7 @@
     SUBDIR += libebml
     SUBDIR += libextractor
     SUBDIR += libexttextcat
+    SUBDIR += libflate
     SUBDIR += libguess
     SUBDIR += libkmfl
     SUBDIR += libkolabxml

Added: head/textproc/libflate/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libflate/Makefile	Fri Feb  8 09:40:48 2013	(r311933)
@@ -0,0 +1,21 @@
+# Created by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
+# $FreeBSD$
+
+PORTNAME=	libflate
+PORTVERSION=	2.0
+CATEGORIES=	textproc devel
+MASTER_SITES=	http://flate.dead-inside.org/
+
+MAINTAINER=	g.veniamin@googlemail.com
+COMMENT=	Template library used to deal with html code in CGI applications
+
+PLIST_FILES=	lib/${PORTNAME}.a \
+		bin/checktpl
+
+.include <bsd.port.pre.mk>
+
+do-install:
+	@${INSTALL_PROGRAM} ${WRKSRC}/checktpl ${PREFIX}/bin/
+	@${INSTALL_LIB} ${WRKSRC}/${PORTNAME}.a ${PREFIX}/lib/
+
+.include <bsd.port.post.mk>

Added: head/textproc/libflate/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libflate/distinfo	Fri Feb  8 09:40:48 2013	(r311933)
@@ -0,0 +1,2 @@
+SHA256 (libflate-2.0.tar.gz) = fec6252876cea88acea08fa2ded632c681238ccd15138f0a4399b103e78c5bc8
+SIZE (libflate-2.0.tar.gz) = 22376

Added: head/textproc/libflate/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/textproc/libflate/pkg-descr	Fri Feb  8 09:40:48 2013	(r311933)
@@ -0,0 +1,9 @@
+Flate is a template library used to deal with html code in CGI applications.
+The library includes C and Perl support. All html code is put in an external
+file (the template) and printed using the library functions: variables, zones
+(parts to be displayed or not) and tables (parts to be displayed 0 to n times).
+Using this method you don't need to modify/recompile your application when
+modifying html code, printing order doesn't matter in your CGI code, and your
+CGI code is much cleaner.
+
+WWW: http://flate.dead-inside.org/



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