From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Feb 8 09:50:04 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.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 1D0526E3 for ; Fri, 8 Feb 2013 09:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 10B648C5 for ; Fri, 8 Feb 2013 09:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r189o30k045704 for ; Fri, 8 Feb 2013 09:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r189o3II045702; Fri, 8 Feb 2013 09:50:03 GMT (envelope-from gnats) Date: Fri, 8 Feb 2013 09:50:03 GMT Message-Id: <201302080950.r189o3II045702@freefall.freebsd.org> To: freebsd-ports-bugs@FreeBSD.org Cc: From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/175559: commit references a PR X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: dfilter service List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Feb 2013 09:50:04 -0000 The following reply was made to PR ports/175559; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/175559: commit references a PR Date: Fri, 8 Feb 2013 09:40:57 +0000 (UTC) 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/ _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"