From owner-svn-ports-head@FreeBSD.ORG Fri Feb 8 09:40:49 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A52FE29F; Fri, 8 Feb 2013 09:40:49 +0000 (UTC) (envelope-from miwi@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) by mx1.freebsd.org (Postfix) with ESMTP id 98E32860; Fri, 8 Feb 2013 09:40:49 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.5/8.14.5) with ESMTP id r189enqY036233; Fri, 8 Feb 2013 09:40:49 GMT (envelope-from miwi@svn.freebsd.org) Received: (from miwi@localhost) by svn.freebsd.org (8.14.5/8.14.5/Submit) id r189em07036093; Fri, 8 Feb 2013 09:40:48 GMT (envelope-from miwi@svn.freebsd.org) Message-Id: <201302080940.r189em07036093@svn.freebsd.org> From: Martin Wilke Date: Fri, 8 Feb 2013 09:40:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r311933 - in head/textproc: . libflate X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2013 09:40:49 -0000 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 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 +# $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 + +do-install: + @${INSTALL_PROGRAM} ${WRKSRC}/checktpl ${PREFIX}/bin/ + @${INSTALL_LIB} ${WRKSRC}/${PORTNAME}.a ${PREFIX}/lib/ + +.include 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/