Tue Nov 10 20:15:41 2009 UTC ()
Fix build with latest boost-libs.


(markd)
diff -r1.15 -r1.16 pkgsrc/meta-pkgs/gnuradio/Makefile.common

cvs diff -r1.15 -r1.16 pkgsrc/meta-pkgs/gnuradio/Attic/Makefile.common (expand / switch to unified diff)

--- pkgsrc/meta-pkgs/gnuradio/Attic/Makefile.common 2009/09/11 16:23:31 1.15
+++ pkgsrc/meta-pkgs/gnuradio/Attic/Makefile.common 2009/11/10 20:15:40 1.16
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.common,v 1.15 2009/09/11 16:23:31 joerg Exp $ 1# $NetBSD: Makefile.common,v 1.16 2009/11/10 20:15:40 markd Exp $
2# 2#
3# This Makefile fragment is included at the top of package Makefiles for 3# This Makefile fragment is included at the top of package Makefiles for
4# GNU Radio distributed packages (they all share common configure and build 4# GNU Radio distributed packages (they all share common configure and build
5# settings). 5# settings).
6 6
7.include "../../meta-pkgs/gnuradio/Makefile.version" 7.include "../../meta-pkgs/gnuradio/Makefile.version"
8 8
9DISTNAME?= gnuradio-${VERSION} 9DISTNAME?= gnuradio-${VERSION}
10CATEGORIES+= ham 10CATEGORIES+= ham
11MASTER_SITES?= http://gnuradio.org/releases/gnuradio/ 11MASTER_SITES?= http://gnuradio.org/releases/gnuradio/
12 12
13MAINTAINER?= wulf@NetBSD.org 13MAINTAINER?= wulf@NetBSD.org
14HOMEPAGE?= http://www.gnu.org/software/gnuradio/ 14HOMEPAGE?= http://www.gnu.org/software/gnuradio/
@@ -23,21 +23,22 @@ MAKE_JOBS_SAFE= no @@ -23,21 +23,22 @@ MAKE_JOBS_SAFE= no
23 23
24DISTINFO_FILE= ${.CURDIR}/../../meta-pkgs/gnuradio/distinfo 24DISTINFO_FILE= ${.CURDIR}/../../meta-pkgs/gnuradio/distinfo
25PATCHDIR= ${.CURDIR}/../../meta-pkgs/gnuradio/patches 25PATCHDIR= ${.CURDIR}/../../meta-pkgs/gnuradio/patches
26 26
27BUILD_DEPENDS+=doxygen>=1.5.1:../../devel/doxygen 27BUILD_DEPENDS+=doxygen>=1.5.1:../../devel/doxygen
28 28
29PY_PATCHPLIST= yes 29PY_PATCHPLIST= yes
30 30
31EGDIR= ${PREFIX}/share/examples/gnuradio/conf.d 31EGDIR= ${PREFIX}/share/examples/gnuradio/conf.d
32PKG_SYSCONFSUBDIR=gnuradio/conf.d 32PKG_SYSCONFSUBDIR=gnuradio/conf.d
33 33
34CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/share/examples 34CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/share/examples
35CONFIGURE_ARGS+= --disable-all-components 35CONFIGURE_ARGS+= --disable-all-components
36CONFIGURE_ARGS+= --with-boost-thread=mt 36CONFIGURE_ARGS+= --with-boost-thread=boost_thread
 37CONFIGURE_ARGS+= --with-boost-program-options=boost_program_options
37 38
38pre-configure: 39pre-configure:
39.if empty(PKGNAME:Mgnuradio-howto-*) 40.if empty(PKGNAME:Mgnuradio-howto-*)
40 cd ${WRKSRC} && ./bootstrap 41 cd ${WRKSRC} && ./bootstrap
41.endif 42.endif
42 43
43.include "../../mk/bsd.prefs.mk" 44.include "../../mk/bsd.prefs.mk"