summaryrefslogtreecommitdiff
path: root/mail/exim-doc-html/Makefile
blob: d6e18a7dc2f6c7b9e2499d964774e4551a6b7965 (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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# New ports collection makefile for:	exim-doc-html
# Date created:		27 November 2001
# Whom:	      		Johann Visagie <wjv@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	exim
PORTVERSION=	4.69
CATEGORIES=	mail
MASTER_SITES=	${MASTER_SITE_EXIM:S/$/:exim/} \
		${MASTER_SITE_LOCAL:S/$/:local/} \
		http://dryice.name/computer/FreeBSD/distfiles/
MASTER_SITE_SUBDIR=	exim4/:exim dryice/:local
PKGNAMESUFFIX=	-doc-${DOCFORMAT}
DISTNAME=	exim-${DISTDOCFORMAT}-${PORTVERSION}
DISTFILES=	${DISTNAME}.tar.bz2:exim,local
DIST_SUBDIR=	exim

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Documentation for the Exim MTA in multiple formats

USE_BZIP2=	yes

DOCFORMAT?=	html
DISTDOCFORMAT?=	${DOCFORMAT}

.if ${DOCFORMAT} == "info"
BUILD_DEPENDS+=	${LOCALBASE}/bin/makeinfo:${PORTSDIR}/print/texinfo
MAKEINFO=	${LOCALBASE}/bin/makeinfo
.endif

.if !defined(NOPORTDOCS)
.if ${DOCFORMAT} == "html"
PORTDOCS=	html
.elif ${DOCFORMAT} == "pdf"
PORTDOCS=	*.pdf
.elif ${DOCFORMAT} == "postscript"
PORTDOCS=	*.ps
.elif ${DOCFORMAT} == "info"
PLIST=		${PKGDIR}/pkg-plist_${DOCFORMAT}
.else
pre-everything::
	@ ${ECHO} 'ERROR: invalid value for DOCFORMAT: "${DOCFORMAT}"'
	@ ${ECHO} 'Possible values are "html", "pdf", "postscript" and "info".'
	@ ${FALSE}
.endif
.endif

do-build:
.if ${DOCFORMAT} == "info"
	@ cd ${WRKSRC}/doc; \
		${MAKEINFO} --no-split --output exim.info spec.texinfo; \
		${MAKEINFO} --no-split --output exim_filter.info filter.texinfo
.else
	@ ${DO_NADA}
.endif

do-install:
.if !defined(NOPORTDOCS)
	@ ${MKDIR} ${DOCSDIR}
.if ${DOCFORMAT} == "html"
	${TAR} -C ${WRKSRC}/doc -cf - html | \
		${TAR} --unlink -C ${DOCSDIR} -xf -
.elif ${DOCFORMAT} == "pdf"
	@ ${INSTALL_DATA} ${WRKSRC}/doc/*.pdf ${DOCSDIR}
.elif ${DOCFORMAT} == "postscript"
	@ ${INSTALL_DATA} ${WRKSRC}/doc/*.ps ${DOCSDIR}
.elif ${DOCFORMAT} == "info"
	@ ${INSTALL_DATA} ${WRKSRC}/doc/exim.info ${PREFIX}/info
	@ install-info --section="Exim" \
		--entry "* User guide: (exim).           Exim manual" \
		${PREFIX}/info/exim.info ${PREFIX}/info/dir
	@ ${INSTALL_DATA} ${WRKSRC}/doc/exim_filter.info ${PREFIX}/info
	@ install-info --section="Exim" \
		--entry "* Filtering: (exim_filter).     Filtering mail with Exim" \
		${PREFIX}/info/exim_filter.info ${PREFIX}/info/dir
.else
	@${FALSE}
.endif
.endif

.include <bsd.port.mk>