aboutsummaryrefslogtreecommitdiffstats
path: root/comms/gr-osmosdr/Makefile
blob: 7e2827fc75dc742d76df839d586b93bfd965ed15 (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
43
44
45
46
47
48
# $FreeBSD$

PORTNAME=   gr-osmosdr
PORTVERSION=    20130509
PORTREVISION=   2
CATEGORIES= comms hamradio
MASTER_SITES=   http://contribs.martymac.org/FreeBSD-ports/distfiles/ \
        LOCAL/martymac
EXTRACT_SUFX=   .tgz

MAINTAINER= martymac@FreeBSD.org
COMMENT=    GNU Radio OsmoSDR module

LICENSE=    GPLv3

BUILD_DEPENDS=  swig:${PORTSDIR}/devel/swig13 \
        cheetah:${PORTSDIR}/devel/py-cheetah
LIB_DEPENDS=    gnuradio-core:${PORTSDIR}/comms/gnuradio \
        gnuradio-fcd:${PORTSDIR}/comms/gnuradio \
        gruel:${PORTSDIR}/comms/gnuradio \
        boost_system:${PORTSDIR}/devel/boost-libs \
        boost_thread:${PORTSDIR}/devel/boost-libs

USES=   pkgconfig cmake
USE_LDCONFIG=   yes
USE_PYTHON= 2.7+

CMAKE_ARGS+=    -DENABLE_DEFAULT:BOOL=OFF \
        -DENABLE_FCD:BOOL=ON \
        -DENABLE_FILE:BOOL=ON

OPTIONS_DEFINE= RTLSDR
RTLSDR_DESC=    Enable rtl-sdr (RTL2832) support
OPTIONS_DEFAULT=    RTLSDR

NO_STAGE=   yes
.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MRTLSDR}
LIB_DEPENDS+=   rtlsdr:${PORTSDIR}/comms/rtl-sdr
CMAKE_ARGS+=    -DENABLE_RTL:BOOL=ON \
        -DENABLE_RTL_TCP:BOOL=ON
.endif

post-install:
    ${LN} -s libgnuradio-osmosdr.so.0.0.1git ${PREFIX}/lib/libgnuradio-osmosdr.so.0

.include <bsd.port.mk>