aboutsummaryrefslogtreecommitdiffstats
path: root/devel/root-doc/Makefile
blob: 857df06227ae2fa770408ec4830376c873e5ebeb (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
# New ports collection makefile for:    root-doc
# Date created:     23 Apr 2004
# Whom:         Radim Kolar
#
# $FreeBSD$
#

PORTNAME=   root-doc
PORTVERSION=    5.02
CATEGORIES= devel science math
MASTER_SITES=   ftp://root.cern.ch/root/
DISTNAME=   html${PORTVERSION:S/.//}

MAINTAINER= simon@lang-clan.de
COMMENT=    HTML Documentation for Root framework

NO_BUILD=   yes
WRKSRC=     ${WRKDIR}/htmldoc
PLIST=      ${WRKDIR}/pkg-plist
IGNOREFILES=    ${DISTFILES}

.ifdef NOPORTDOCS
IGNORE=     This package contains only documentation
.endif

pre-install:
    cd ${WRKSRC} && ${FIND} . \( -type f -or -type l \) -exec ${ECHO_CMD} "%%DOCSDIR%%/{}" \; > ${PLIST}
    cd ${WRKSRC} && ${FIND} -d . -mindepth 1 -type d -exec ${ECHO_CMD} "@dirrm %%DOCSDIR%%/{}" \; >> ${PLIST}
    ${ECHO_CMD} "@dirrm %%DOCSDIR%%" >> ${PLIST}

do-install:
    ${MKDIR} ${DOCSDIR}
    cd ${WRKSRC} && ${FIND} . | ${CPIO} -pdm -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR}

.include <bsd.port.mk>