1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-28 01:06:17 +00:00
freebsd-ports/textproc/htmlise/Makefile
Emanuel Haupt 4e74162b8b Change MAINTAINER address for my ports.
Approved by:	novel (mentor)
2005-10-06 11:57:11 +00:00

37 lines
770 B
Makefile

# New ports collection makefile for: htmlise
# Date created: 2 Sep 2005
# Whom: Emanuel Haupt <ehaupt@critical.ch>
#
# $FreeBSD$
#
PORTNAME= htmlise
PORTVERSION= 0.2
CATEGORIES= textproc
MASTER_SITES= http://www.ex-parrot.com/~chris/stuff/
MAINTAINER= ehaupt@FreeBSD.org
COMMENT= Formats plain text as HTML
USE_REINPLACE= yes
TABSIZE?= 8
SRC= htmlise tables markup inline
PLIST_FILES= bin/htmlise
post-patch:
@${REINPLACE_CMD} -e 's|\(TABSIZE\ \)[0-9]*|\1${TABSIZE}|' \
${WRKSRC}/${PORTNAME}.h
do-build:
.for f in ${SRC}
${CC} ${CFLAGS} -c ${WRKSRC}/${f}.c -o ${WRKSRC}/${f}.o
.endfor
${CC} ${CFLAGS} -o ${WRKSRC}/${PORTNAME} ${SRC:C/(.*)/${WRKSRC}\/\1.o/}
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
.include <bsd.port.mk>