pkgsrc/lang/hugs/Makefile
markd 57ea52bf0a Update Hugs98 to Dec 2001 version.
Changes are:

   - The incompatibilities between Hugs and the Haskell Graphics Library
     have been fixed, and binaries for the HGL are now available on the
     Hugs download page.

   - The missing standard libraries Directory, CPUTime, Time and Locale
     have been added along with a complete implementation of Haskell98 IO.

   - Hugs is now delivered with most of the hslibs libraries installed
     in the lib/exts/ directory.  The added modules cover the Edison,
     Parsec, HaXml, QuickCheck, concurrent, monad, and html subdirectories
     of hslibs.

   - The :set option now refuses the user to set a module search path
     that doesn't contain the Prelude. This is to protect users from
     accidentally rendering their Hugs setups unusable, esp. so on
     Windows machines where the options are persisted to the Registry.

   - MacOS X is now one of the supported unix ports, with pre-built
     binaries available on the download page.

   - Experimental support is provided for hierarchical module names,
     where a module name A.B.C is mapped onto the file path
     A/B/C{.hs,.lhs} and appended to each of the path prefixes in
     HUGSPATH until the name of a readable file is found.
2002-04-09 02:59:14 +00:00

30 lines
879 B
Makefile

# $NetBSD: Makefile,v 1.21 2002/04/09 02:59:14 markd Exp $
DISTNAME= hugs98-Dec2001
PKGNAME= hugs98-200112
WRKSRC= ${WRKDIR}/hugs98-Dec2001/src/unix
CATEGORIES= lang
MASTER_SITES= http://cvs.haskell.org/Hugs/downloads/
MAINTAINER= nathanw@mit.edu
HOMEPAGE= http://www.haskell.org/hugs/
COMMENT= Nottingham and Yale Haskell interpreter and programming environment
USE_BUILDLINK_ONLY= # defined
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --with-readline
ALL_TARGET= default
do-build:
@cd ${WRKSRC}/.. && ${SETENV} ${MAKE_ENV} \
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} ${ALL_TARGET}
do-install:
@cd ${WRKSRC}/.. && ${SETENV} ${MAKE_ENV} \
${MAKE_PROGRAM} ${MAKE_FLAGS} -f ${MAKEFILE} ${INSTALL_TARGET}
post-install:
${INSTALL_MAN} ${WRKSRC}/../../docs/hugs.1 ${PREFIX}/man/man1/hugs.1
.include "../../devel/readline/buildlink.mk"
.include "../../mk/bsd.pkg.mk"