67 lines
1.7 KiB
Makefile
67 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.12 2008/09/19 21:23:19 kili Exp $
|
|
|
|
COMMENT= parser generator for the functional language Haskell
|
|
|
|
V= 1.16
|
|
DISTNAME= happy-${V}
|
|
PKGNAME= ${DISTNAME}p0
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://www.haskell.org/happy/
|
|
|
|
# BSD style w/o advertising clause
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c m
|
|
|
|
MODULES= lang/ghc
|
|
MODGHC_RUNTIME= No
|
|
|
|
MASTER_SITES= ${HOMEPAGE}dist/${V}/
|
|
|
|
BUILD_DEPENDS+= ::textproc/docbook \
|
|
::textproc/docbook-xsl \
|
|
::textproc/libxslt
|
|
LIB_DEPENDS= gmp::devel/gmp
|
|
|
|
SETUP_CONF_ARGS= configure -g --prefix=${PREFIX}
|
|
SETUP_CONF_ENV= HOME=${PORTHOME} ${CONFIGURE_ENV}
|
|
SETUP_PROG= ${WRKSRC}/Setup
|
|
SUBST_VARS= V
|
|
|
|
# Required for building the documentation and for the regression tests:
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= autoconf no-autoheader
|
|
AUTOCONF_VERSION= 2.61
|
|
AUTOCONF_DIR= ${WRKSRC}/doc
|
|
WRKCONF= ${AUTOCONF_DIR}
|
|
|
|
post-configure:
|
|
@cd ${WRKSRC} && ghc --make -o ${SETUP_PROG} Setup.lhs
|
|
@cd ${WRKBUILD} && exec ${SETENV} ${SETUP_CONF_ENV} \
|
|
${SETUP_PROG} ${SETUP_CONF_ARGS}
|
|
|
|
do-build:
|
|
@cd ${WRKBUILD} && exec ${SETENV} ${MAKE_ENV} \
|
|
${SETUP_PROG} build
|
|
@cd ${WRKBUILD}/doc && exec ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_PROGRAM} html
|
|
|
|
do-install:
|
|
@cd ${WRKBUILD} && exec ${SETENV} ${MAKE_ENV} \
|
|
${SETUP_PROG} copy --destdir=${DESTDIR}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc
|
|
cd ${WRKBUILD}/doc && umask 022 && pax -rw happy ${PREFIX}/share/doc
|
|
|
|
do-regress:
|
|
@cd ${WRKBUILD}/tests && exec ${SETENV} ${MAKE_ENV} \
|
|
gmake HAPPY=${WRKBUILD}/dist/build/happy/happy \
|
|
TEST_HAPPY_OPTS="-t ${WRKBUILD}/templates --strict"
|
|
|
|
.include <bsd.port.mk>
|