aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/htmldoc/Makefile
blob: 2df6b492d83f115be69038ff1865005d07fa8d1a (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# New ports collection makefile for:   htmldoc
# Date created:        12 June 2001
# Whom:                Glenn Trewitt <glenn@trewitt.org>
#
# $FreeBSD$
#

PORTNAME=   htmldoc
PORTVERSION=    1.8.27
PORTREVISION=   7
CATEGORIES= textproc
MASTER_SITES=   ${MASTER_SITE_EASYSW}
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}
DISTNAME=   ${PORTNAME}-${PORTVERSION}-source

MAINTAINER= jose@diasfernandes.pt
COMMENT=    Converts HTML to PDF and/or PostScript

LIB_DEPENDS=    jpeg:${PORTSDIR}/graphics/jpeg  \
        png15:${PORTSDIR}/graphics/png

OPTIONS=    HTMLDOCGUI "Build GUI front-end" off
# .bz2 file is available since Aug 2, but we don't want to
# start mirroring _in addition to_ the .gz variant. When the
# vendor's release is updated again, we should switch to .bz2
#USE_BZIP2= yes

GNU_CONFIGURE=  yes
# Configure seems broken and ignores these ATM:
CONFIGURE_ARGS+=--enable-localjpeg --enable-localzlib --enable-localpng
WRKSRC=     ${WRKDIR}/${PORTNAME}-${PORTVERSION}
EXCLUDE=    png jpeg zlib htmldoc/md5* htmldoc/rc4* htmldoc/snprintf*
EXTRACT_AFTER_ARGS=| ${TAR} -xf - ${EXCLUDE:S,^,--exclude ,}

MAN1=   htmldoc.1
post-patch:
    ${REINPLACE_CMD} -e 's,@JPEG@ @ZLIB@ @PNG@ ,,' ${WRKSRC}/Makefile.in
    ${REINPLACE_CMD} -e 's|@LDFLAGS@|-L${LOCALBASE}/lib @LDFLAGS@|' \
        -e 's|@JPEGINC@ @PNGINC@ @ZLIBINC@|-I${LOCALBASE}/include -I${LOCALBASE}/include/libpng15|' \
        ${WRKSRC}/Makedefs.in
    # Remove redundant code:
    ${REINPLACE_CMD} -Ee 's,(md5|snprintf|rc4)\.o,,g'   \
        ${WRKSRC}/htmldoc/Makefile

post-configure:
    ${REINPLACE_CMD} -e \
        's|../png/libpng.a ../zlib/libz.a ../jpeg/libjpeg.a|-ljpeg -lpng -lz|' ${WRKSRC}/Makedefs

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_HTMLDOCGUI)
LIB_DEPENDS+=   fltk:${PORTSDIR}/x11-toolkits/fltk
CONFIGURE_ARGS+=--with-gui=yes
.else
CONFIGURE_ARGS+=--with-gui=no
.endif
.include <bsd.port.post.mk>