mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-01 05:45:45 +00:00
bf330a57d4
PR: ports/144487 Submitted by: ale Approved by: portmgr (-exp run by erwin)
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
# New ports collection makefile for: hmake
|
|
# Date created: 27 November 2001
|
|
# Whom: mwest@uct.ac.za
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= hmake
|
|
PORTVERSION= 3.14
|
|
PORTREVISION= 4
|
|
CATEGORIES= devel haskell
|
|
MASTER_SITES= http://www.haskell.org/hmake/ \
|
|
ftp://ftp.cs.york.ac.uk/pub/haskell/hmake/ \
|
|
http://www.cs.york.ac.uk/fp/hmake/
|
|
PKGNAMEPREFIX= hs-
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Intelligent compilation management tool for Haskell programs
|
|
|
|
BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc \
|
|
hs-readline>=1.0.1.0:${PORTSDIR}/devel/hs-readline
|
|
RUN_DEPENDS= ${BUILD_DEPENDS}
|
|
LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp
|
|
|
|
HAS_CONFIGURE= YES
|
|
CONFIGURE_ARGS+= --prefix=${PREFIX}
|
|
USE_GMAKE= YES
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "i386"
|
|
PLIST_SUB+= ARCH=ix86
|
|
.elif ${ARCH} == "amd64"
|
|
PLIST_SUB+= ARCH=amd64
|
|
.endif
|
|
|
|
.if exists(${LOCALBASE}/lib/libreadline.so)
|
|
LIB_DEPENDS= readline.6:${PORTSDIR}/devel/readline
|
|
.endif
|
|
|
|
do-install:
|
|
# cheat a bit, otherwise LIBDIR gets clobbered
|
|
(cd ${WRKSRC} && ./configure --install)
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${PREFIX}/bin/runhs
|
|
|
|
MAN1= hmake.1
|
|
|
|
CONFLICTS= nhc98-[0-9]*
|
|
|
|
.include <bsd.port.post.mk>
|