openbsd-ports/devel/haddock/Makefile
kili 64e9934bcb Bump after the xhtml update in lang/ghc.
Not strictly necessary, but I don't want to get a heart attack
because of some people who don't use packages and don't
rebuild all hs-ports properly.
2012-01-12 20:20:05 +00:00

88 lines
2.2 KiB
Makefile

# $OpenBSD: Makefile,v 1.36 2012/01/12 20:20:05 kili Exp $
COMMENT-main = documentation-generation tool for Haskell libraries
COMMENT-lib = haddock library
DISTNAME = haddock-2.9.2
PKGNAME-main = ${DISTNAME}
REVISION-main = 2
PKGNAME-lib = hs-${DISTNAME}
REVISION-lib = 2
CATEGORIES = devel
HOMEPAGE = http://www.haskell.org/haddock/
MULTI_PACKAGES = -main -lib
# BSD3
PERMIT_PACKAGE_CDROM = Yes
PERMIT_PACKAGE_FTP = Yes
PERMIT_DISTFILES_CDROM =Yes
PERMIT_DISTFILES_FTP = Yes
# This flavor is needed to let ghc extract the haddock sources
# without pulling in haddocks own build dependencies (which would
# include ghc).
FLAVORS = no_deps
FLAVOR ?=
.if ! ${FLAVOR:Mno_deps}
MODULES = lang/ghc converters/libiconv
MODGHC_BUILD = cabal hackage register
LIB_DEPENDS-lib =
LIB_DEPENDS-main = ${LIB_DEPENDS} \
devel/gmp
WANTLIB-lib =
WANTLIB-main = ${WANTLIB} \
c gmp m pthread util
BUILD_DEPENDS += devel/hs-ghc-paths \
lang/ghc,-doc \
textproc/docbook \
textproc/docbook-xsl \
textproc/libxslt \
${RUN_DEPENDS}
RUN_DEPENDS-lib = ${RUN_DEPENDS} \
devel/hs-ghc-paths
USE_GMAKE = Yes
CONFIGURE_STYLE = autoconf no-autoheader
AUTOCONF_VERSION = 2.61
AUTOCONF_DIR = ${WRKSRC}/doc
WRKCONF = ${AUTOCONF_DIR}
.else
MASTER_SITES = http://hackage.haskell.org/packages/archive/${DISTNAME:S,-,/,}/
DIST_SUBDIR = ghc
do-build:
@echo "*** The no_deps FLAVOR is not meant to be built at all, it is"
@echo "*** only used by lang/ghc to get a copy of the haddock sources."
@false
.endif
# Move the alex- and happy-generated files into the src dir and
# rename the corresponding sources so cabal won't try to re-run
# alex or happy.
post-extract:
cd ${WRKSRC}/src && \
find . -name \*.[xy] -print | \
sed 's@\(.*\)\.[xy]@mv & &.source \&\& mv ../dist/build/haddock/haddock-tmp/\1.hs \1.hs@' | \
sh
post-build:
@cd ${WRKBUILD}/doc && exec ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} html
@cd ${WRKBUILD} && exec ${SETENV} ${MAKE_ENV} \
${MODGHC_SETUP_PROG} \
--with-haddock=${WRKBUILD}/dist/build/haddock/haddock \
haddock --haddock-option=-l${WRKBUILD}
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc
cd ${WRKBUILD}/doc && umask 022 && pax -rw haddock ${PREFIX}/share/doc
.include <bsd.port.mk>