fcb7da800b
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.
28 lines
702 B
Makefile
28 lines
702 B
Makefile
# $NetBSD: Makefile,v 1.4 2005/06/01 20:08:01 jlam Exp $
|
|
#
|
|
|
|
DISTNAME= socket++-1.12.10
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://www.linuxhacker.at/linux/downloads/src/
|
|
|
|
MAINTAINER= mchittur@cs.nmsu.edu
|
|
HOMEPAGE= http://www.linuxhacker.at/socketxx/
|
|
COMMENT= C++ class library for UNIX Sockets with exception handling
|
|
|
|
USE_LIBTOOL= YES
|
|
USE_TOOLS+= automake14
|
|
AUTOCONF_REQD= 2.50
|
|
GNU_CONFIGURE= YES
|
|
USE_TOOLS+= gmake
|
|
TEST_DIRS= ${WRKSRC}/test
|
|
TEST_TARGET= check
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}; \
|
|
${LOCALBASE}/bin/libtoolize --automake; \
|
|
aclocal -I .; \
|
|
autoheader; \
|
|
automake --add-missing; \
|
|
autoconf
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|