forked from Lainports/freebsd-ports
40 lines
1.1 KiB
Makefile
40 lines
1.1 KiB
Makefile
# New ports collection makefile for: haddock
|
|
# Date created: 09 May 2002
|
|
# Whom: Oliver Braun <obraun@informatik.unibw-muenchen.de>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= haddock
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.haskell.org/haddock/
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
|
|
|
|
MAINTAINER= obraun@informatik.unibw-muenchen.de
|
|
|
|
BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/share/sgml/docbook/dsssl/modular:${PORTSDIR}/textproc/dsssl-docbook-modular \
|
|
${LOCALBASE}/share/sgml/docbook/catalog:${PORTSDIR}/textproc/docbook \
|
|
${LOCALBASE}/share/sgml/iso8879:${PORTSDIR}/textproc/iso8879 \
|
|
${LOCALBASE}/share/sgml/docbook/3.1:${PORTSDIR}/textproc/docbook-310 \
|
|
jade:${PORTSDIR}/textproc/jade
|
|
.endif
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//g}
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
post-build:
|
|
.if !defined(NOPORTDOCS)
|
|
@(cd ${WRKSRC}/haddock/doc && \
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} html)
|
|
.endif
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@(cd ${WRKSRC}/haddock/doc && ${CP} -R haddock ${PREFIX}/share/doc)
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|