svn commit: r311933 - in head/textproc: . libflate
Martin Wilke
miwi at FreeBSD.org
Fri Feb 8 09:40:49 UTC 2013
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 at 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 at googlemail.com>
+# $FreeBSD$
+
+PORTNAME= libflate
+PORTVERSION= 2.0
+CATEGORIES= textproc devel
+MASTER_SITES= http://flate.dead-inside.org/
+
+MAINTAINER= g.veniamin at 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/
More information about the svn-ports-head
mailing list