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/ices-mp3/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/ices-mp3/Makefile')
-rw-r--r-- | audio/ices-mp3/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/audio/ices-mp3/Makefile b/audio/ices-mp3/Makefile index da4691c0699..efa278c69ad 100644 --- a/audio/ices-mp3/Makefile +++ b/audio/ices-mp3/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2005/04/11 21:44:53 tv Exp $ +# $NetBSD: Makefile,v 1.6 2005/06/01 20:07:59 jlam Exp $ # DISTNAME= ices-${ICES_VERSION} @@ -12,6 +12,7 @@ MAINTAINER= kim@tac.nyc.ny.us HOMEPAGE= http://www.icecast.org/ices.php COMMENT= Source client for a streaming server +USE_TOOLS+= automake USE_LIBTOOL= yes GNU_CONFIGURE= yes @@ -32,7 +33,7 @@ EGDIR= ${PREFIX}/share/examples/${PKGBASE} MODDIR= ${PREFIX}/share/${PKGBASE} pre-configure: - cd ${WRKSRC} && ${AUTORECONF} --force + cd ${WRKSRC} && autoreconf --force do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/ices ${PREFIX}/bin/${PKGBASE} @@ -65,5 +66,4 @@ CONFIGURE_ARGS+= --with-python=${PYTHONBIN} .include "../../textproc/libxml2/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" -.include "../../mk/automake.mk" .include "../../mk/bsd.pkg.mk" |