diff options
Diffstat (limited to 'textproc/hevea/Makefile')
-rw-r--r-- | textproc/hevea/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/textproc/hevea/Makefile b/textproc/hevea/Makefile index ca30f1961c5..660f9e5f6a4 100644 --- a/textproc/hevea/Makefile +++ b/textproc/hevea/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.2 2003/06/02 01:16:41 jschauma Exp $ +# $NetBSD: Makefile,v 1.3 2003/06/23 20:36:14 jtb Exp $ DISTNAME= hevea-1.05 +PKGREVISION= 1 CATEGORIES= textproc MASTER_SITES= ftp://ftp.inria.fr/INRIA/Projects/para/hevea/ @@ -10,4 +11,10 @@ COMMENT= LaTeX to HTML translator DEPENDS+= ocaml>=3.00:../../lang/ocaml +.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || (${MACHINE_ARCH} == "sparc") +ALL_TARGET=opt +.else +ALL_TARGET=byte +.endif + .include "../../mk/bsd.pkg.mk" |