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 /audio/tremor-tools/Makefile | |
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 'audio/tremor-tools/Makefile')
-rw-r--r-- | audio/tremor-tools/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/audio/tremor-tools/Makefile b/audio/tremor-tools/Makefile index f8fda3b7615..179f20ce19c 100644 --- a/audio/tremor-tools/Makefile +++ b/audio/tremor-tools/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 2005/05/22 20:07:39 jlam Exp $ +# $NetBSD: Makefile,v 1.16 2005/06/01 20:07:59 jlam Exp $ DISTNAME= vorbis-tools-1.0 PKGNAME= tremor-tools-1.0.0.8 @@ -17,21 +17,17 @@ CONFLICTS= vorbis-[0-9]* GNU_CONFIGURE= yes USE_LIBTOOL= yes -USE_TOOLS+= gmake +USE_TOOLS+= automake14 gmake CONFIGURE_ARGS+= --with-ogg-prefix=${BUILDLINK_PREFIX.libogg} \ --with-vorbis-prefix=${BUILDLINK_PREFIX.libvorbis} \ --with-ao-prefix=${BUILDLINK_PREFIX.libao} PLIST_SUBST+= DISTNAME="${DISTNAME}" -AUTOMAKE_REQD= 1.4 PTHREAD_OPTS+= require pre-configure: - cd ${WRKSRC} && ${AUTOMAKE} - cd ${WRKSRC} && ${AUTOCONF} - -.include "../../mk/automake.mk" + cd ${WRKSRC} && automake && autoconf .include "../../audio/libao/buildlink3.mk" .include "../../audio/libvorbis/buildlink3.mk" |