aboutsummaryrefslogtreecommitdiffstats
path: root/lang/ocaml-doc/Makefile
blob: 52d638b49d0bc31af92550719b524788280d33a9 (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
# Created by: Eugene Ossintsev
# $FreeBSD$

PORTNAME=   ocaml
PORTVERSION=    3.12.1
CATEGORIES= lang
MASTER_SITES=   http://caml.inria.fr/distrib/${DISTNAME:R}/ \
        ftp://ftp.inria.fr/INRIA/caml-light/${DISTNAME:R}/ \
        ftp://ftp.kurims.kyoto-u.ac.jp/pub/lang/caml-light/${DISTNAME:R}/
PKGNAMESUFFIX=  -doc
DISTFILES=  ${DISTNAME}-refman-html.tar.gz \
        ${DISTNAME:R}-refman.ps.gz \
        ${DISTNAME:R}-refman.pdf
EXTRACT_ONLY=   ${DISTNAME}-refman-html.tar.gz

MAINTAINER= johans@FreeBSD.org
COMMENT=    Documentation (HTML, PS) for the Objective Caml

NO_BUILD=   yes

PORTDOCS=   ${DISTNAME:R}-refman.ps \
        ${DISTNAME:R}-refman.pdf \
        html

.ifdef(NOPORTDOCS)
IGNORE=     installs only documentation and you have NOPORTDOCS defined
.endif

do-install:
    @${MKDIR} ${DOCSDIR}/html/libref
    cd ${WRKDIR}/htmlman/libref && ${INSTALL_DATA} * ${DOCSDIR}/html/libref
    cd ${WRKDIR}/htmlman && ${INSTALL_DATA} [a-km-z]* libg* ${DOCSDIR}/html
    cp ${DISTDIR}/${DISTNAME:R}-refman.ps.gz ${WRKDIR}
    ${GUNZIP_CMD} ${WRKDIR}/${DISTNAME:R}-refman.ps.gz
    ${INSTALL_DATA} ${WRKDIR}/${DISTNAME:R}-refman.ps ${DOCSDIR}
    ${INSTALL_DATA} ${DISTDIR}/${DISTNAME:R}-refman.pdf ${DOCSDIR}

.include <bsd.port.mk>