1a75cb1d44
- Update HACKAGE_SITE to follow changes in upstream - MAKE_ENV now sets LC_ALL and DESTDIR for Haskell Cabal ports - Further minor cosmetical changes: replace USE_GMAKE with USES, get rid of ${DO_NADA}, some refactoring Obtained from: FreeBSD Haskell
29 lines
603 B
Makefile
29 lines
603 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= highlighting-kate
|
|
PORTVERSION= 0.5.3.9
|
|
PORTREVISION= 2
|
|
CATEGORIES= textproc haskell
|
|
|
|
MAINTAINER= haskell@FreeBSD.org
|
|
COMMENT= Syntax highlighting
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_CABAL= blaze-html>=0.4.2 mtl parsec regex-pcre-builtin
|
|
|
|
OPTIONS_DEFINE= EXECUTABLE
|
|
|
|
EXECUTABLE_DESC= Build the Highlight executable
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.options.mk"
|
|
|
|
.if ${PORT_OPTIONS:MEXECUTABLE}
|
|
CONFIGURE_ARGS+= --flags="executable"
|
|
EXECUTABLE+= Highlight
|
|
.else
|
|
CONFIGURE_ARGS+= --flags="-executable"
|
|
.endif
|
|
|
|
.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk"
|
|
.include <bsd.port.mk>
|