mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
2dceff8e43
source files that contain text fragments that require some computation to be written. Those fragments can be the output of an arbitrary Unix command, for instance the last modification date of a page, or parts of HTML pages to be included in the page, or pieces of the page that are common to the entire WEB site (a presentation header or a footer section for each page). Providing the automatic inclusion of those text fragments into your HTML source pages, Htmlc offers a server independent way of defining templates to factorize out the repetitive parts of HTML pages. Htmlc also provides a variable expansion facility (using definitions in the template file or in simple environment files using a syntax a la objective Caml). In short, Htmlc ensures the static verification and the static expansion of the Server Side Includes directives of the Web pages in the efficient and friendly way of a command-line compiler. WWW: http://htmlc.inria.fr/eng.htm PR: ports/144896 Submitted by: Timothy Beyer <beyert at cs.ucr.edu>
60 lines
1.7 KiB
Makefile
60 lines
1.7 KiB
Makefile
# New ports collection makefile for: htmlc
|
|
# Date created: 14 Mar 2010
|
|
# Whom: Timothy Beyer <beyert@cs.ucr.edu>
|
|
#
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= htmlc
|
|
PORTVERSION= 2.21.0
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://htmlc.inria.fr/ \
|
|
http://caml.inria.fr/distrib/bazar-ocaml/htmlc/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= beyert@cs.ucr.edu
|
|
COMMENT= A text file generator
|
|
|
|
BUILD_DEPENDS= ocamlc:${PORTSDIR}/lang/ocaml
|
|
|
|
#MAN1= htmlc.1
|
|
|
|
PLIST_FILES= bin/htmlc bin/htmlc.byt share/htmlc/env
|
|
PLIST_DIRS= share/htmlc
|
|
PORTDOCS= LICENSE INSTALL README JoeCaml.gif rocq.gif copyright-eng.htm \
|
|
copyright-fra.htm eng.htm fra.htm index.htm
|
|
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix ${LOCALBASE}
|
|
USE_GMAKE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
post-patch:
|
|
${RM} -f ${WRKSRC}/doc/Makefile
|
|
${TOUCH} ${WRKSRC}/doc/Makefile
|
|
${ECHO} "all:" > ${WRKSRC}/doc/Makefile
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/compiler/htmlc ${PREFIX}/bin
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/compiler/htmlc.byt ${PREFIX}/bin
|
|
@${MKDIR} ${DATADIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/config/env ${DATADIR}
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/LICENSE ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/INSTALL ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/README ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/JoeCaml.gif ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/rocq.gif ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/copyright-eng.htm ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/copyright-fra.htm ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/eng.htm ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/fra.htm ${DOCSDIR}
|
|
@${INSTALL_DATA} ${WRKSRC}/doc/index.htm ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|