Sat Jan 16 17:48:02 2010 UTC ()
Convert to use automake instead of automake14.


(wiz)
diff -r1.8 -r1.9 pkgsrc/net/socket++/Makefile

cvs diff -r1.8 -r1.9 pkgsrc/net/socket++/Makefile (expand / switch to unified diff)

--- pkgsrc/net/socket++/Makefile 2008/06/20 01:09:31 1.8
+++ pkgsrc/net/socket++/Makefile 2010/01/16 17:48:02 1.9
@@ -1,33 +1,32 @@ @@ -1,33 +1,32 @@
1# $NetBSD: Makefile,v 1.8 2008/06/20 01:09:31 joerg Exp $ 1# $NetBSD: Makefile,v 1.9 2010/01/16 17:48:02 wiz Exp $
2# 2#
3 3
4DISTNAME= socket++-1.12.10 4DISTNAME= socket++-1.12.10
5PKGREVISION= 2 5PKGREVISION= 2
6CATEGORIES= net 6CATEGORIES= net
7MASTER_SITES= http://www.linuxhacker.at/linux/downloads/src/ 7MASTER_SITES= http://www.linuxhacker.at/linux/downloads/src/
8 8
9MAINTAINER= mchittur@cs.nmsu.edu 9MAINTAINER= mchittur@cs.nmsu.edu
10HOMEPAGE= http://www.linuxhacker.at/socketxx/ 10HOMEPAGE= http://www.linuxhacker.at/socketxx/
11COMMENT= C++ class library for UNIX Sockets with exception handling 11COMMENT= C++ class library for UNIX Sockets with exception handling
12 12
13PKG_DESTDIR_SUPPORT= user-destdir 13PKG_DESTDIR_SUPPORT= user-destdir
14 14
15INFO_FILES= # PLIST 15INFO_FILES= # PLIST
16USE_LANGUAGES= c c++ 16USE_LANGUAGES= c c++
17USE_LIBTOOL= YES 17USE_LIBTOOL= YES
18USE_TOOLS+= automake14 18USE_TOOLS+= automake
19AUTOCONF_REQD= 2.50 
20GNU_CONFIGURE= YES 19GNU_CONFIGURE= YES
21USE_TOOLS+= gmake 20USE_TOOLS+= gmake makeinfo
22TEST_DIRS= ${WRKSRC}/test 21TEST_DIRS= ${WRKSRC}/test
23TEST_TARGET= check 22TEST_TARGET= check
24 23
25pre-configure: 24pre-configure:
26 cd ${WRKSRC}; \ 25 cd ${WRKSRC}; \
27 ${LOCALBASE}/bin/libtoolize --automake; \ 26 ${LOCALBASE}/bin/libtoolize --automake; \
28 aclocal -I .; \ 27 aclocal -I .; \
29 autoheader; \ 28 autoheader; \
30 automake --add-missing; \ 29 automake --add-missing; \
31 autoconf 30 autoconf
32 31
33.include "../../mk/bsd.pkg.mk" 32.include "../../mk/bsd.pkg.mk"