mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
86f2dbca13
upgrade, lang/ghc cabal package cache gets invalidated causing all dependent ports to be reinstalled. Obtained from: FreeBSD Haskell
34 lines
766 B
Makefile
34 lines
766 B
Makefile
# New ports collection makefile for: hs-ansi-wl-pprint
|
|
# Date created: May 21, 2010
|
|
# Whom: Gabor Pali <pgj@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ansi-wl-pprint
|
|
PORTVERSION= 0.6.3
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= The Wadler/Leijen Pretty Printer for colored ANSI terminal output
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_CABAL= ansi-terminal>=0.4.0
|
|
|
|
OPTIONS= EXAMPLE "Build the example application" off
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if defined(WITH_EXAMPLE)
|
|
CONFIGURE_ARGS+= --flags="Example"
|
|
EXECUTABLE= ansi-wl-pprint-example
|
|
.else
|
|
CONFIGURE_ARGS+= --flags="-Example"
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|