blob: ecb7be04f4710ec9db7ccb9a9f3f37940b9600cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# $NetBSD: Makefile.common,v 1.5 2006/07/22 04:46:16 rillig Exp $
#
# This Makefile fragment is included at the top of package Makefiles for
# GNU Radio distributed packages (they all share common configure and build
# settings).
CATEGORIES+= ham
MASTER_SITES?= ${MASTER_SITE_GNU:=gnuradio/}
MAINTAINER?= wulf@NetBSD.org
HOMEPAGE?= http://www.gnu.org/software/gnuradio/
USE_LIBTOOL= yes
GNU_CONFIGURE= yes
USE_LANGUAGES= c c++
USE_TOOLS+= gmake automake autoconf pkg-config
BUILD_DEPENDS+=doxygen>=1.4.7:../../devel/doxygen
PY_PATCHPLIST= yes
PYTHON_VERSIONS_ACCEPTED= 24 23
EGDIR= ${PREFIX}/share/examples/gnuradio/conf.d
PKG_SYSCONFSUBDIR=gnuradio/conf.d
pre-configure:
cd ${WRKSRC}; ./bootstrap
.include "../../mk/bsd.prefs.mk"
|