blob: 3cac2397dcc6371c72959c4f50f1124a9ca53fb4 (
plain) (
blame)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# $FreeBSD$
PORTNAME= gr-osmosdr
PORTVERSION= 20140314
PORTREVISION= 1
CATEGORIES= comms hamradio
MASTER_SITES= http://contribs.martymac.org/FreeBSD-ports/distfiles/ \
LOCAL/martymac
MAINTAINER= martymac@FreeBSD.org
COMMENT= GNU Radio OsmoSDR module
LICENSE= GPLv3
BUILD_DEPENDS= swig:${PORTSDIR}/devel/swig13 \
cheetah:${PORTSDIR}/devel/py-cheetah
LIB_DEPENDS= libgnuradio-runtime.so:${PORTSDIR}/comms/gnuradio \
libgnuradio-pmt.so:${PORTSDIR}/comms/gnuradio \
libgnuradio-blocks.so:${PORTSDIR}/comms/gnuradio \
libboost_system.so:${PORTSDIR}/devel/boost-libs \
libboost_thread.so:${PORTSDIR}/devel/boost-libs
USES= pkgconfig cmake tar:tgz python
USE_LDCONFIG= yes
# See lib/CMakeLists.txt to enable more components
CMAKE_ARGS+= -DENABLE_DEFAULT:BOOL=OFF \
-DENABLE_FCD:BOOL=ON \
-DENABLE_FILE:BOOL=ON \
-DENABLE_PYTHON=ON
OPTIONS_DEFINE= RTLSDR
RTLSDR_DESC= Enable rtl-sdr (RTL2832) support
OPTIONS_DEFAULT= RTLSDR
RTLSDR_LIB_DEPENDS= librtlsdr.so:${PORTSDIR}/comms/rtl-sdr
RTLSDR_CMAKE_ON= -DENABLE_RTL:BOOL=ON -DENABLE_RTL_TCP:BOOL=ON
post-install:
@${LN} -sf libgnuradio-osmosdr.so.0.0.1git \
${STAGEDIR}${PREFIX}/lib/libgnuradio-osmosdr.so.0
.include <bsd.port.mk>
|