mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-24 09:25:01 +00:00
a8713d15f4
- Enable `long double` C99 math usage - Switch 9.x back to building with GCC Changes: http://www.boost.org/users/history/ PR: 199601 Submitted by: Chen Xu, bapt, amdmi3, truckman (based on) Reviewed by: rakuco (kde) (earlier version) Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions) Approved by: bapt (office)
55 lines
1.4 KiB
Makefile
55 lines
1.4 KiB
Makefile
# Created by: Ganael Laplanche <ganael.laplanche@martymac.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gqrx
|
|
PORTVERSION= 2.6
|
|
PORTREVISION= 1
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
PORTEPOCH= 1
|
|
CATEGORIES= comms hamradio
|
|
|
|
MAINTAINER= martymac@FreeBSD.org
|
|
COMMENT= Software defined radio receiver powered by GNU Radio and Qt
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libgnuradio-runtime.so:comms/gnuradio \
|
|
libgnuradio-analog.so:comms/gnuradio \
|
|
libgnuradio-blocks.so:comms/gnuradio \
|
|
libgnuradio-filter.so:comms/gnuradio \
|
|
libgnuradio-fft.so:comms/gnuradio \
|
|
libgnuradio-audio.so:comms/gnuradio \
|
|
libgnuradio-digital.so:comms/gnuradio \
|
|
libgnuradio-pmt.so:comms/gnuradio \
|
|
libgnuradio-osmosdr.so:comms/gr-osmosdr \
|
|
libpulse.so:audio/pulseaudio \
|
|
libpulse-simple.so:audio/pulseaudio \
|
|
libboost_system.so:devel/boost-libs \
|
|
libboost_program_options.so:devel/boost-libs
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= csete
|
|
|
|
USES= pkgconfig qmake
|
|
|
|
USE_GL= gl
|
|
USE_QT5= buildtools_build core gui svg network widgets
|
|
|
|
PLIST_FILES= bin/gqrx share/applications/gqrx.desktop
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/gqrx ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/gqrx.desktop \
|
|
${STAGEDIR}${PREFIX}/share/applications
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Chase comms/gnuradio compiler choice
|
|
.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
|
|
USE_GCC= yes
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|