diff options
author | jlam <jlam> | 2005-06-01 20:07:59 +0000 |
---|---|---|
committer | jlam <jlam> | 2005-06-01 20:07:59 +0000 |
commit | 6492b8f1ec8698b04f9127eecc0ef008460a9830 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /graphics/cal3d-examples | |
parent | 9c65cd2dcc49b8566966aad971d48eabca98f809 (diff) | |
download | pkgsrc-6492b8f1ec8698b04f9127eecc0ef008460a9830.tar.gz |
Remove mk/autoconf.mk and mk/automake.mk and replace their usage with
USE_TOOLS and any of "autoconf", "autoconf213", "automake" or
"automake14". Also, we don't need to call the auto* tools via
${ACLOCAL}, ${AUTOCONF}, etc., since the tools framework takes care
to symlink the correct tool to the correct name, so we can just use
aclocal, autoconf, etc.
Diffstat (limited to 'graphics/cal3d-examples')
-rw-r--r-- | graphics/cal3d-examples/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/cal3d-examples/Makefile b/graphics/cal3d-examples/Makefile index a35e8000722..d4072b27217 100644 --- a/graphics/cal3d-examples/Makefile +++ b/graphics/cal3d-examples/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2005/06/01 18:02:54 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2005/06/01 20:08:00 jlam Exp $ # PKGNAME= cal3d-examples-${CAL3D_VERSION} @@ -11,6 +11,8 @@ DISTFILES= TheCallyDemo-0.9.1b.zip \ COMMENT= Tools and demos for cal3d library +USE_TOOLS+= automake + CONFIGURE_ARGS+= --with-cal3d=${PREFIX} CONFIGURE_ARGS+= --with-glut=${PREFIX} CONFIGURE_DIRS= ${WRKSRC}/examples/cally \ @@ -50,6 +52,4 @@ post-install: .include "../../graphics/Mesa/buildlink3.mk" .include "../../mk/x11.buildlink3.mk" -.include "../../mk/automake.mk" -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" |