aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/htmlise/Makefile
blob: a683b93a3710e64acb57bb74469e1a6a853bb002 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Created by: Emanuel Haupt <ehaupt@critical.ch>
# $FreeBSD$

PORTNAME=   htmlise
PORTVERSION=    0.2
CATEGORIES= textproc
MASTER_SITES=   http://www.ex-parrot.com/~chris/stuff/ \
        CRITICAL

MAINTAINER= ehaupt@FreeBSD.org
COMMENT=    Formats plain text as HTML

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>