freebsd-ports/devel/hs-darcs/Makefile
Gabor Pali 52a16208ea Rename the following Haskell ports to bring them in sync with the
HackageDB:

  archivers/hs-zip-archive-ghc -> archivers/hs-zip-archive
  devel/hs-binary-ghc -> devel/hs-binary
  devel/darcs -> devel/hs-darcs
  devel/hs-language-c-ghc -> devel/hs-language-c
  devel/hs-lazysmallcheck-ghc -> devel/hs-lazysmallcheck
  devel/hs-pcre-light-ghc -> devel/hs-pcre-light
  devel/hs-utf8-string-ghc -> devel/hs-utf8-string
  graphics/hs-HGL-ghc -> graphics/hs-HGL
  ports-mgmt/porte -> ports-mgmt/hs-porte
  security/hs-digest-ghc -> security/hs-digest
  textproc/hs-haxml -> textproc/hs-HaXml
  textproc/hs-highlighting-kate-ghc -> textproc/hs-highlighting-kate
  textproc/hs-polyparse-ghc -> textproc/hs-polyparse
  textproc/pandoc -> textproc/hs-pandoc
  x11/hs-x11-ghc -> x11/hs-X11
  x11/hs-x11-xft-ghc -> x11/hs-X11-xft
  x11/xmobar -> x11/hs-xmobar
  x11-toolkits/hs-opengl-ghc -> x11-toolkits/hs-OpenGL
  x11-toolkits/hs-OpenGLRaw-ghc -> x11-toolkits/hs-OpenGLRaw
  x11-toolkits/hs-GLURaw-ghc -> x11-toolkits/hs-GLURaw
  x11-toolkits/hs-glut-ghc -> x11-toolkits/hs-GLUT
  x11-wm/xmonad -> x11-wm/hs-xmonad
  x11-wm/xmonad-contrib -> x11-wm/hs-xmonad-contrib
2010-05-24 21:52:43 +00:00

117 lines
3.0 KiB
Makefile

# New ports collection makefile for: darcs
# Date created: 13 April 2003
# Whom: Oliver Braun <obraun@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= darcs
PORTVERSION= 2.4.3
CATEGORIES= devel haskell
MAINTAINER= haskell@FreeBSD.org
COMMENT= A distributed, interactive, smart revision control system
USE_HACKAGE= hashed-storage haskeline>=0.6.1 utf8-string>=0.3 zlib>=0.5.1.0
EXECUTABLE= darcs
MAN1= darcs.1
MAN1SRC= dist/build/darcs
OPTIONS= CURL "Use libcurl for HTTP support" on \
CURL_PIPELINING "Use libcurl's HTTP pipelining" off \
HTTP "Use the pure HTTP package" off \
STATIC "Build static binary" off \
TERMINFO "Use the terminfo package" off \
THREADED "Use threading and SMP support" on \
TYPE_WITNESSES "Use GADT type witnesses" off \
COLOR "Use ANSI color escapes" off \
MMAP "Compile with mmap support" off \
TEST "Compile unit tests" off
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
.include <bsd.port.options.mk>
.if defined(WITH_CURL)
CONFIGURE_ARGS+= --flags="curl"
LIB_DEPENDS+= curl:${PORTSDIR}/ftp/curl
.else
CONFIGURE_ARGS+= --flags="-curl"
.endif
.if defined(WITH_CURL_PIPELINING)
CONFIGURE_ARGS+= --flags="curl-pipelining"
BUILD_DEPENDS+= pkg-config>=0.9.0:${PORTSDIR}/devel/pkg-config
.if !defined(WITH_CURL)
IGNORE= cannot be compiled without CURL in this configuration. Please (re)run 'make config' and choose CURL too
.endif
.else
CONFIGURE_ARGS+= --flags="-curl-pipelining"
.endif
.if defined(WITH_HTTP)
CONFIGURE_ARGS+= --flags="http"
USE_HACKAGE+= HTTP>=3000.0
.else
CONFIGURE_ARGS+= --flags="-http"
.endif
.if !defined(WITH_CURL) && !defined(WITH_HTTP)
IGNORE= cannot be compiled without HTTP support. Please (re)run 'make config' and choose either CURL or HTTP
.endif
.if defined(WITH_STATIC)
CONFIGURE_ARGS+= --flags="static"
.else
CONFIGURE_ARGS+= --flags="-static"
.endif
.if defined(WITH_TERMINFO)
CONFIGURE_ARGS+= --flags="terminfo"
USE_HACKAGE+= terminfo>=0.3
.else
CONFIGURE_ARGS+= --flags="-terminfo"
.endif
.if defined(WITH_THREADED)
CONFIGURE_ARGS+= --flags="threaded"
.else
CONFIGURE_ARGS+= --flags="-threaded"
.endif
.if defined(WITH_TYPE_WITNESSES)
CONFIGURE_ARGS+= --flags="type-witnesses"
EXECUTABLE+= witnesses
PLIST_SUB+= MAYBE_TYPE_WITNESSES=""
.else
CONFIGURE_ARGS+= --flags="-type-witnesses"
PLIST_SUB+= MAYBE_TYPE_WITNESSES="@comment "
.endif
.if defined(WITH_COLOR)
CONFIGURE_ARGS+= --flags="color"
.else
CONFIGURE_ARGS+= --flags="-color"
.endif
.if defined(WITH_MMAP)
CONFIGURE_ARGS+= --flags="mmap"
USE_HACKAGE+= mmap>=0.2
.else
CONFIGURE_ARGS+= --flags="-mmap"
.endif
.if defined(WITH_TEST)
CONFIGURE_ARGS+= --flags="test"
USE_HACKAGE+= QuickCheck>=2.1.0.0 test-framework>=0.2.2 test-framework-hunit>=0.2.2 test-framework-quickcheck2>=0.2.2
EXECUTABLE+= unit
PLIST_SUB+= MAYBE_TEST=""
.else
CONFIGURE_ARGS+= --flags="-test"
PLIST_SUB+= MAYBE_TEST="@comment "
.endif
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
.include <bsd.port.mk>