instead. Also fix a braino in the Makefile that resulted in it always using the bytecode compiler rather than the native compiler. PKGREVISION++
24 lines
581 B
Makefile
24 lines
581 B
Makefile
# $NetBSD: Makefile,v 1.8 2004/05/03 23:45:56 danw Exp $
|
|
|
|
DISTNAME= hevea-1.06
|
|
PKGREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://para.inria.fr/~maranget/hevea/distri/
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://para.inria.fr/~maranget/hevea/
|
|
COMMENT= LaTeX to HTML translator
|
|
|
|
BUILD_DEPENDS+= ocaml>=3.00:../../lang/ocaml
|
|
|
|
MAKE_ENV+= M4="${M4}"
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "sparc")
|
|
MAKE_ENV+= TARGET=opt
|
|
.else
|
|
MAKE_ENV+= TARGET=byte
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|