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/xmms-faad | |
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/xmms-faad')
-rw-r--r-- | audio/xmms-faad/Makefile | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/audio/xmms-faad/Makefile b/audio/xmms-faad/Makefile index b2d436b950a..a13b894f17b 100644 --- a/audio/xmms-faad/Makefile +++ b/audio/xmms-faad/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2005/05/22 20:07:39 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2005/06/01 20:07:59 jlam Exp $ DISTNAME= faad2-2.0 PKGNAME= xmms-faad-2.0 @@ -14,12 +14,11 @@ COMMENT= XMMS plugin for faad #NO_BIN_ON_CDROM= ${RESTRICTED} WRKSRC= ${WRKDIR}/faad2 -USE_TOOLS+= gmake +USE_TOOLS+= automake14 gmake USE_LANGUAGES= c c++ USE_LIBTOOL= YES SHLIBTOOL_OVERRIDE= libtool -AUTOMAKE_REQD= 1.4 AUTOCONF_REQD= 2.50 GNU_CONFIGURE= YES @@ -32,11 +31,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 do-build: @@ -52,5 +51,4 @@ do-install: .include "../../audio/xmms/buildlink3.mk" .include "../../devel/pkgconfig/buildlink3.mk" .include "../../x11/gtk/buildlink3.mk" -.include "../../mk/automake.mk" .include "../../mk/bsd.pkg.mk" |