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/socket++ | |
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/socket++')
-rw-r--r-- | net/socket++/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/net/socket++/Makefile b/net/socket++/Makefile index 4f8f6c71202..d3a139d786c 100644 --- a/net/socket++/Makefile +++ b/net/socket++/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2005/05/22 20:08:26 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2005/06/01 20:08:01 jlam Exp $ # DISTNAME= socket++-1.12.10 @@ -10,7 +10,7 @@ HOMEPAGE= http://www.linuxhacker.at/socketxx/ COMMENT= C++ class library for UNIX Sockets with exception handling USE_LIBTOOL= YES -AUTOMAKE_REQD= 1.4 +USE_TOOLS+= automake14 AUTOCONF_REQD= 2.50 GNU_CONFIGURE= YES USE_TOOLS+= gmake @@ -20,10 +20,9 @@ TEST_TARGET= check pre-configure: cd ${WRKSRC}; \ ${LOCALBASE}/bin/libtoolize --automake; \ - ${ACLOCAL} -I .; \ - ${AUTOHEADER}; \ - ${AUTOMAKE} --add-missing; \ - ${AUTOCONF}; \ + aclocal -I .; \ + autoheader; \ + automake --add-missing; \ + autoconf -.include "../../mk/automake.mk" .include "../../mk/bsd.pkg.mk" |