From owner-freebsd-ports-bugs@FreeBSD.ORG Fri Sep 2 06:40:10 2005 Return-Path: X-Original-To: freebsd-ports-bugs@hub.freebsd.org Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEA8D16A41F for ; Fri, 2 Sep 2005 06:40:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CABF43D46 for ; Fri, 2 Sep 2005 06:40:10 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.3/8.13.3) with ESMTP id j826eA3l068344 for ; Fri, 2 Sep 2005 06:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.3/8.13.1/Submit) id j826eAh0068343; Fri, 2 Sep 2005 06:40:10 GMT (envelope-from gnats) Resent-Date: Fri, 2 Sep 2005 06:40:10 GMT Resent-Message-Id: <200509020640.j826eAh0068343@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Emanuel Haupt Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DF6216A41F for ; Fri, 2 Sep 2005 06:34:59 +0000 (GMT) (envelope-from ehaupt@mx.critical.ch) Received: from mx.critical.ch (admin.critical.ch [67.18.86.178]) by mx1.FreeBSD.org (Postfix) with SMTP id C730043D45 for ; Fri, 2 Sep 2005 06:34:58 +0000 (GMT) (envelope-from ehaupt@mx.critical.ch) Received: (qmail 22545 invoked by uid 1000); 2 Sep 2005 06:34:58 -0000 Message-Id: <20050902063458.22544.qmail@mx.critical.ch> Date: 2 Sep 2005 06:34:58 -0000 From: Emanuel Haupt To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/85618: new port: textproc/htmlise - Formats plain text as HTML X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Emanuel Haupt List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Sep 2005 06:40:10 -0000 >Number: 85618 >Category: ports >Synopsis: new port: textproc/htmlise - Formats plain text as HTML >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Fri Sep 02 06:40:09 GMT 2005 >Closed-Date: >Last-Modified: >Originator: Emanuel Haupt >Release: FreeBSD 4.11-RELEASE-p11 i386 >Organization: >Environment: System: FreeBSD admin.critical.ch 4.11-RELEASE-p11 FreeBSD 4.11-RELEASE-p11 #0: Thu Jun 30 09:36:40 CEST 2005 root@admin.critical.ch:/usr/obj/usr/src-release/src/sys/GENERIC i386 >Description: new port: textproc/htmlise - Formats plain text as HTML A command line utility that formats plain text from standard input to HTML >How-To-Repeat: >Fix: --- htmlise.shar begins here --- # This is a shell archive. Save it in a file, remove anything before # this line, and then unpack it by entering "sh file". Note, it may # create directories; files and directories will be owned by you and # have default permissions. # # This archive contains: # # htmlise # htmlise/Makefile # htmlise/pkg-descr # htmlise/distinfo # echo c - htmlise mkdir -p htmlise > /dev/null 2>&1 echo x - htmlise/Makefile sed 's/^X//' >htmlise/Makefile << 'END-of-htmlise/Makefile' X# New ports collection makefile for: htmlise X# Date created: 2 Sep 2005 X# Whom: Emanuel Haupt X# X# $FreeBSD$ X# X XPORTNAME= htmlise XPORTVERSION= 0.2 XCATEGORIES= textproc XMASTER_SITES= http://www.ex-parrot.com/~chris/stuff/ X XMAINTAINER= ehaupt@critical.ch XCOMMENT= Formats plain text as HTML X XUSE_REINPLACE= yes X XTABSIZE?= 8 X XSRC= htmlise tables markup inline XPLIST_FILES= bin/htmlise X Xpost-patch: X @${REINPLACE_CMD} -e 's|\(TABSIZE\ \)[0-9]*|\1${TABSIZE}|' \ X ${WRKSRC}/${PORTNAME}.h X Xdo-build: X.for f in ${SRC} X ${CC} ${CFLAGS} -c ${WRKSRC}/${f}.c -o ${WRKSRC}/${f}.o X.endfor X ${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${SRC:C/(.*)/${WRKSRC}\/\1.o/} X Xdo-install: X ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin X X.include END-of-htmlise/Makefile echo x - htmlise/pkg-descr sed 's/^X//' >htmlise/pkg-descr << 'END-of-htmlise/pkg-descr' XA command line utility that formats plain text from standard input to HTML. X XWWW: http://www.ex-parrot.com/~chris/software.html X X- ehaupt Xehaupt@critical.ch END-of-htmlise/pkg-descr echo x - htmlise/distinfo sed 's/^X//' >htmlise/distinfo << 'END-of-htmlise/distinfo' XMD5 (htmlise-0.2.tar.gz) = b3c3a1f22d7b3f8a7cb0638c28af0623 XSIZE (htmlise-0.2.tar.gz) = 11334 END-of-htmlise/distinfo exit --- htmlise.shar ends here --- >Release-Note: >Audit-Trail: >Unformatted: