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 | fcb7da800bdfcf21720b30da13c68603c1f09525 (patch) | |
tree | 77aa2e325b82a73660278dbb13238e6aac0adca7 /audio/faac/Makefile | |
parent | f252a9837d224356df2bfc3c73223d7e84e939c5 (diff) | |
download | pkgsrc-fcb7da800bdfcf21720b30da13c68603c1f09525.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/faac/Makefile')
-rw-r--r-- | audio/faac/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/audio/faac/Makefile b/audio/faac/Makefile index cd64883aadd..6b7c6fabb57 100644 --- a/audio/faac/Makefile +++ b/audio/faac/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2005/04/11 21:44:52 tv Exp $ +# $NetBSD: Makefile,v 1.5 2005/06/01 20:07:59 jlam Exp $ # DISTNAME= faac-1.24 @@ -11,6 +11,7 @@ HOMEPAGE= http://www.audiocoding.com/ COMMENT= AAC audio encoder USE_LIBTOOL= yes +USE_TOOLS+= automake GNU_CONFIGURE= yes WRKSRC= ${WRKDIR}/faac @@ -19,10 +20,6 @@ LIBTOOLIZE= ${PREFIX}/bin/libtoolize pre-configure: cd ${WRKSRC}; \ ${LIBTOOLIZE} --automake; \ - ${ACLOCAL}; \ - ${AUTOHEADER}; \ - ${AUTOMAKE} -a --foreign -i; \ - ${AUTOCONF} + aclocal; autoheader; automake -a --foreign -i; autoconf -.include "../../mk/automake.mk" .include "../../mk/bsd.pkg.mk" |