aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/htmltolatex/Makefile
blob: 677df89265da0d238ce5b429296245acf335cff2 (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
# ex:ts=8
# New ports collection makefile for:    htmltolatex
# Date created:         Jan 19, 2002
# Whom:             ijliao
#
# $FreeBSD$
#

PORTNAME=   htmltolatex
PORTVERSION=    1
PORTREVISION=   14
CATEGORIES= textproc
MASTER_SITES=   http://people.FreeBSD.org/~foxfair/distfiles/
DISTNAME=   ${PORTNAME}

MAINTAINER= ports@FreeBSD.org
COMMENT=    HTML to LaTeX to PDF Converter

LIB_DEPENDS=    GraphicsMagick++:${PORTSDIR}/graphics/GraphicsMagick

USE_BISON=  build
USE_GMAKE=  yes
MAKEFILE=   GNUmakefile
MAKE_ARGS=  -j`${SYSCTL} -n hw.ncpu` CXX="${CXX}" \
        CXXFLAGS="${CXXFLAGS} -DUNIX \
            `GraphicsMagick++-config --cppflags`"

post-configure:
    ${REINPLACE_CMD} -e 's,/usr/local,${LOCALBASE},g'   \
        -e 's,-lMagick,-lGraphicsMagick,g'  \
        -e 's,-lstdc++,,'   \
        -e 's,{quote},{tightquote},' ${WRKSRC}/QA/test1*_baseline*.tex \
        ${WRKSRC}/${MAKEFILE}

post-build test:
    @if ! cd ${WRKSRC}/QA && ./run_tests;   \
    then    \
        ${CAT} ${WRKSRC}/QA/*.diff; \
        exit 1; \
    fi

do-install:
    ${INSTALL_PROGRAM} ${WRKSRC}/h2l ${PREFIX}/bin
    @${MKDIR} ${DATADIR}
    ${INSTALL_DATA} ${WRKSRC}/nmr.tex ${DATADIR}

.include <bsd.port.mk>