From owner-svn-ports-all@freebsd.org Fri Sep 9 10:12:01 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 77B00BD433E; Fri, 9 Sep 2016 10:12:01 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 4A64EBE3; Fri, 9 Sep 2016 10:12:01 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u89AC0RF022076; Fri, 9 Sep 2016 10:12:00 GMT (envelope-from martymac@FreeBSD.org) Received: (from martymac@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u89AC0id022075; Fri, 9 Sep 2016 10:12:00 GMT (envelope-from martymac@FreeBSD.org) Message-Id: <201609091012.u89AC0id022075@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: martymac set sender to martymac@FreeBSD.org using -f From: Ganael LAPLANCHE Date: Fri, 9 Sep 2016 10:12:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421606 - head/comms/gr-osmosdr X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Sep 2016 10:12:01 -0000 Author: martymac Date: Fri Sep 9 10:12:00 2016 New Revision: 421606 URL: https://svnweb.freebsd.org/changeset/ports/421606 Log: Add Hackrf support Submitted by: ash Modified: head/comms/gr-osmosdr/Makefile Modified: head/comms/gr-osmosdr/Makefile ============================================================================== --- head/comms/gr-osmosdr/Makefile Fri Sep 9 09:32:11 2016 (r421605) +++ head/comms/gr-osmosdr/Makefile Fri Sep 9 10:12:00 2016 (r421606) @@ -2,7 +2,7 @@ PORTNAME= gr-osmosdr PORTVERSION= 20150716 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms hamradio MASTER_SITES= http://contribs.martymac.org/FreeBSD-ports/distfiles/ \ LOCAL/martymac @@ -29,10 +29,13 @@ CMAKE_ARGS+= -DENABLE_DEFAULT:BOOL=OFF \ -DENABLE_FILE:BOOL=ON \ -DENABLE_PYTHON=ON -OPTIONS_DEFINE= RTLSDR +OPTIONS_DEFINE= RTLSDR HACKRF RTLSDR_DESC= Enable rtl-sdr (RTL2832) support OPTIONS_DEFAULT= RTLSDR RTLSDR_LIB_DEPENDS= librtlsdr.so:comms/rtl-sdr RTLSDR_CMAKE_ON= -DENABLE_RTL:BOOL=ON -DENABLE_RTL_TCP:BOOL=ON +HACKRF_DESC= Enable hackrf one hardware support +HACKRF_LIB_DEPENDS= libhackrf.so:comms/hackrf +HACKRF_CMAKE_ON= -DENABLE_HACKRF:BOOL=ON .include