mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
46e9ab0ca5
Please note that port revision for all the Haskell ports without version changes are also bumped. Other per-port updates are coming soon (in separate commits)! In addition to that, separate -docs ports are no longer needed so they are now removed. Thanks ashish@ for the assistance. Obtained from: FreeBSD Haskell
67 lines
1.6 KiB
Makefile
67 lines
1.6 KiB
Makefile
# New ports collection makefile for: drift
|
|
# Date created: 13 August 2002
|
|
# Whom: Oliver Braun <obraun@informatik.unibw-muenchen.de>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= drift
|
|
PORTVERSION= 2.2.3
|
|
PORTREVISION= 5
|
|
CATEGORIES= devel haskell
|
|
MASTER_SITES= http://repetae.net/computer/haskell/DrIFT/drop/
|
|
PKGNAMEPREFIX= hs-
|
|
DISTNAME= DrIFT-${PORTVERSION}
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= A type sensitive preprocessor for Haskell
|
|
|
|
OPTIONS= NHC98 "Build with nhc98" off \
|
|
GHC "Build with ghc" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITH_NHC98)
|
|
BUILD_DEPENDS= ghc:${PORTSDIR}/lang/ghc \
|
|
hs-random>=0:${PORTSDIR}/devel/hs-random
|
|
LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp
|
|
.else
|
|
BUILD_DEPENDS= nhc98:${PORTSDIR}/lang/nhc98
|
|
BROKEN= Does not build
|
|
.endif
|
|
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
INFO= drift
|
|
PLIST_FILES= bin/DrIFT bin/drift-ghc
|
|
|
|
.if !defined(WITH_NHC98)
|
|
CONFIGURE_ARGS+= --with-hc=ghc
|
|
.else
|
|
CONFIGURE_ARGS+= --with-hc=nhc98
|
|
.endif
|
|
|
|
.if !defined(WITH_GHC)
|
|
pre-everything::
|
|
@${ECHO} ""
|
|
@${ECHO} " DrIFT will be build with ghc"
|
|
@${ECHO} " Define WITH_NHC98 to build with nhc98."
|
|
@${ECHO} ""
|
|
|
|
.else
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's|import List|import Data.List| ; \
|
|
s|import Char|import Data.Char| ; \
|
|
s|import Monad|import Control.Monad| ; \
|
|
s|import IO|import System.IO.Error| ; \
|
|
s|import Directory|import System.Directory| ; \
|
|
s|import Maybe|import Data.Maybe| ; \
|
|
s|import Array|import Data.Array| ; \
|
|
s|import Time|import System.Time| ; \
|
|
s|import Random|import System.Random| ; \
|
|
s|import System[^\.]|import System.Exit|' \
|
|
`${FIND} ${WRKSRC} -name '*.*hs'`
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|