summaryrefslogtreecommitdiff
path: root/audio/faad2
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2005-06-01 20:07:59 +0000
committerjlam <jlam@pkgsrc.org>2005-06-01 20:07:59 +0000
commit2bb24f15f17cde7494cc69e5dac941f474ec8605 (patch)
tree77aa2e325b82a73660278dbb13238e6aac0adca7 /audio/faad2
parenta78a94a4f6f91c29d1969aa948a3f809f479fc73 (diff)
downloadpkgsrc-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/faad2')
-rw-r--r--audio/faad2/Makefile14
1 files changed, 6 insertions, 8 deletions
diff --git a/audio/faad2/Makefile b/audio/faad2/Makefile
index e15d31c07d9..54429eb2678 100644
--- a/audio/faad2/Makefile
+++ b/audio/faad2/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.23 2005/05/22 20:07:37 jlam Exp $
+# $NetBSD: Makefile,v 1.24 2005/06/01 20:07:59 jlam Exp $
#
DISTNAME= faad2-2.0
@@ -15,11 +15,10 @@ NO_BIN_ON_FTP= ${RESTRICTED}
NO_BIN_ON_CDROM=${RESTRICTED}
WRKSRC= ${WRKDIR}/faad2
-USE_TOOLS+= gmake
+USE_TOOLS+= automake14 gmake
USE_LANGUAGES= c c++
USE_LIBTOOL= YES
-AUTOMAKE_REQD= 1.4
AUTOCONF_REQD= 2.50
GNU_CONFIGURE= YES
@@ -40,12 +39,11 @@ pre-configure:
@${CP} ${WRKSRC}/common/faad/getopt.* ${WRKSRC}/frontend
for dir in . ; do \
cd ${WRKSRC}/$$dir; \
- ${ACLOCAL} -I .; \
- ${AUTOHEADER}; \
+ aclocal -I .; \
+ autoheader; \
${LOCALBASE}/bin/libtoolize --automake; \
- ${AUTOMAKE} --add-missing; \
- ${AUTOCONF}; \
+ automake --add-missing; \
+ autoconf; \
done
-.include "../../mk/automake.mk"
.include "../../mk/bsd.pkg.mk"