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 /net/openslp | |
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 'net/openslp')
-rw-r--r-- | net/openslp/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/net/openslp/Makefile b/net/openslp/Makefile index 7cddf0da9fc..b56563611fe 100644 --- a/net/openslp/Makefile +++ b/net/openslp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.26 2005/05/26 20:14:21 adrianp Exp $ +# $NetBSD: Makefile,v 1.27 2005/06/01 20:08:01 jlam Exp $ DISTNAME= openslp-1.2.1 CATEGORIES= net @@ -11,7 +11,7 @@ COMMENT= Open-source implementation of the Service Location Protocol # Needs pkgviews-enabled automake # PKG_INSTALLATION_TYPES= overwrite pkgviews -USE_TOOLS+= bison lex +USE_TOOLS+= automake bison lex USE_PKGINSTALL= yes USE_LIBTOOL= yes GNU_CONFIGURE= yes @@ -31,15 +31,14 @@ CONF_FILES+= ${EGDIR}/${FILE} ${PKG_SYSCONFDIR}/${FILE} RCD_SCRIPTS= slpd .include "../../security/openssl/buildlink3.mk" -.include "../../mk/automake.mk" post-extract: @${FIND} ${WRKSRC} -name "CVS" -print | ${XARGS} ${RM} -rf @${RM} -fr ${WRKSRC}/doc/html/UsersGuide/.xvpics pre-configure: - @cd ${WRKSRC} && ${ACLOCAL} && ${AUTOHEADER} && ${AUTOCONF} && \ - ${LOCALBASE}/bin/libtoolize && ${AUTOMAKE} --add-missing + @cd ${WRKSRC} && aclocal && autoheader && autoconf && \ + ${LOCALBASE}/bin/libtoolize && automake --add-missing post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/openslp |