freebsd-ports/devel/hs-crypto/Makefile
Oliver Braun dd69db8b97 Add the mirror http://www.mirror.ac.uk/sites/www.haskell.org/ to MASTER_SITES.
Pointed out by: Simon Marlow <simonmar@microsoft.com>
2004-05-11 19:22:26 +00:00

51 lines
1.2 KiB
Makefile

# New ports collection makefile for: crypto
# Date created: 23 June 2003
# Whom: Oliver Braun <obraun@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= crypto
PORTVERSION= 1.1.2
PORTREVISION= 1
CATEGORIES= devel haskell
MASTER_SITES= http://www.haskell.org/crypto/downloads/ \
http://www.mirror.ac.uk/sites/www.haskell.org/crypto/downloads/
PKGNAMEPREFIX= hs-
EXTRACT_SUFX= .tar
MAINTAINER= haskell@FreeBSD.org
COMMENT= A Haskell Cryptographic Library
BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc
RUN_DEPENDS= ghc:${PORTSDIR}/lang/ghc
.if !defined(NOPORTDOCS)
BUILD_DEPENDS+= haddock:${PORTSDIR}/devel/hs-haddock
.endif
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_REINPLACE= yes
USE_GMAKE= yes
ALL_TARGET= # empty
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' \
${WRKSRC}/Makefile ${WRKSRC}/package.conf
@${REINPLACE_CMD} -e 's|/usr/local|${PREFIX}|' \
${WRKSRC}/Makefile ${WRKSRC}/package.conf
do-configure:
@(cd ${WRKSRC} && ${GMAKE} depend)
.if !defined(NOPORTDOCS)
post-build:
@(cd ${WRKSRC} && ${GMAKE} doc)
post-install:
@${MKDIR} ${DOCSDIR}
@(cd ${WRKSRC} && \
${INSTALL_DATA} *.html ReadMe.* haddock.css haskell_icon.gif ${DOCSDIR})
.endif
.include <bsd.port.mk>