diff options
author | jlam <jlam@pkgsrc.org> | 2005-06-01 20:07:59 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-06-01 20:07:59 +0000 |
commit | 2bb24f15f17cde7494cc69e5dac941f474ec8605 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /graphics/cal3d | |
parent | a78a94a4f6f91c29d1969aa948a3f809f479fc73 (diff) | |
download | pkgsrc-2bb24f15f17cde7494cc69e5dac941f474ec8605.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')
-rw-r--r-- | graphics/cal3d/Makefile | 5 | ||||
-rw-r--r-- | graphics/cal3d/Makefile.common | 7 |
2 files changed, 4 insertions, 8 deletions
diff --git a/graphics/cal3d/Makefile b/graphics/cal3d/Makefile index d6d9c4b3c78..0d75addadf6 100644 --- a/graphics/cal3d/Makefile +++ b/graphics/cal3d/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/04/11 21:46:00 tv Exp $ +# $NetBSD: Makefile,v 1.4 2005/06/01 20:08:00 jlam Exp $ # PKGNAME= cal3d-${CAL3D_VERSION} @@ -8,12 +8,11 @@ PKGREVISION= 1 COMMENT= Skeletal based 3d character animation library in C++ +USE_TOOLS+= automake pre-configure: cd ${WRKSRC} && ./autogen.sh .include "../../graphics/Mesa/buildlink3.mk" -.include "../../mk/automake.mk" -.include "../../mk/autoconf.mk" .include "../../mk/bsd.pkg.mk" diff --git a/graphics/cal3d/Makefile.common b/graphics/cal3d/Makefile.common index d89a5e495da..30e69a0b474 100644 --- a/graphics/cal3d/Makefile.common +++ b/graphics/cal3d/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.5 2005/04/11 21:46:00 tv Exp $ +# $NetBSD: Makefile.common,v 1.6 2005/06/01 20:08:00 jlam Exp $ # DISTNAME= cal3d-${CAL3D_VERSION} @@ -13,8 +13,5 @@ COMMENT= Skeletal based 3d character animation library in C++ EXTRACT_SUFX= .tar.bz2 USE_LIBTOOL= yes +USE_TOOLS+= automake GNU_CONFIGURE= yes -#AUTOMAKE_OVERRIDE= NO - -.include "../../mk/autoconf.mk" -.include "../../mk/automake.mk" |