diff options
author | tron <tron@pkgsrc.org> | 2005-07-30 13:48:26 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2005-07-30 13:48:26 +0000 |
commit | cf4abd9f8c9db829b8b4251194e36228d003e389 (patch) | |
tree | 7ceb5200a23e5ef600f7575b237bf81b2b2bc7fb /x11 | |
parent | 15dbb625717d2dfe583cd12eb62a5a41958a1e0f (diff) | |
download | pkgsrc-cf4abd9f8c9db829b8b4251194e36228d003e389.tar.gz |
Synchronize platforms which support optimization with the "ocaml" package.
This should fix the "configure" problems in the "mldonkey-gui" package.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/lablgtk/Makefile | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/x11/lablgtk/Makefile b/x11/lablgtk/Makefile index 854d93a1138..7f809e58213 100644 --- a/x11/lablgtk/Makefile +++ b/x11/lablgtk/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.19 2005/06/01 18:03:29 jlam Exp $ +# $NetBSD: Makefile,v 1.20 2005/07/30 13:48:26 tron Exp $ DISTNAME= lablgtk-1.2.7 +PKGREVISION= 1 CATEGORIES= x11 MASTER_SITES= http://wwwfun.kurims.kyoto-u.ac.jp/soft/olabl/dist/ @@ -16,7 +17,8 @@ BUILDLINK_DEPENDS.ocaml+= ocaml>=3.0.5 .include "../../mk/bsd.prefs.mk" # currently ocamlopt is only available on i386 -.if (${MACHINE_ARCH} == "i386") +.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || \ + (${MACHINE_ARCH} == "sparc") USE_DOTOPT= YES .else CAMLOPT= ocamlc @@ -32,7 +34,8 @@ do-configure: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} \ configure USE_DOTOPT=${USE_DOTOPT} USE_CC=1 CC=${CC} -.if (${MACHINE_ARCH} == "i386") +.if (${MACHINE_ARCH} == "i386") || (${MACHINE_ARCH} == "powerpc") || \ + (${MACHINE_ARCH} == "sparc") post-build: cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${MAKE_FLAGS} \ opt |