aboutsummaryrefslogtreecommitdiffstats
path: root/textproc/latex2html/Makefile
blob: 955db40ae13ec1797ef29925525feb150c7c4bcc (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
58
59
60
61
62
63
64
65
66
67
# New ports collection makefile for:     latex2html
# Date created:     3 May 1998
# Whom:         brett@peloton.physics.montana.edu
#
# $FreeBSD$
#

PORTNAME=   latex2html
PORTVERSION=    2002.2.1
CATEGORIES= textproc
MASTER_SITES=   ${MASTER_SITE_TEX_CTAN}
MASTER_SITE_SUBDIR= support/${PORTNAME}
DISTNAME=   ${PORTNAME}-${PORTVERSION:S/./-/g}

MAINTAINER= ports@FreeBSD.org
COMMENT=    Convert LaTeX documents to HTML

.include <bsd.port.pre.mk>

# Global variables
#

BUILD_DEPENDS=  ${LOCALBASE}/bin/latex:${PORTSDIR}/print/teTeX \
        ${LOCALBASE}/bin/gs:${PORTSDIR}/print/ghostscript-gnu \
        ${LOCALBASE}/bin/anytopnm:${PORTSDIR}/graphics/netpbm
RUN_DEPENDS=    ${BUILD_DEPENDS}

USE_PERL5=  yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-perl=${PERL} \
        --disable-gif \
        --shlibdir=${DATADIR}

MAN1=   latex2html.1

MSG_FILE=   ${PKGDIR}/pkg-message
PKGMESSAGE= ${WRKDIR}/pkg-message

# Local variables
#

DOC_FILES=  FAQ INSTALL LICENSE README

# Port-patch
#

post-patch:
    @${SED} 's|%%PREFIX%%|${PREFIX}|g' ${MSG_FILE} > ${PKGMESSAGE}

# Post-install
#

post-install: install-docs display-message

install-docs:
    ${INSTALL_MAN} ${FILESDIR}/latex2html.1 ${MANPREFIX}/man/man1
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
.for file in ${DOC_FILES}
    @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif

display-message:
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>