3be8cb19e6
PR: 188811 Submitted by: uffe ================================================================ VISA is a multivendor standard for interfacing test and measurement equipment. LibreVISA aims to be a compliant implementation of the VISA standard in a free software library. Currently support for targets connected via USB, exposing the USBTMC interface, and VXI-11 devices.
22 lines
534 B
Makefile
22 lines
534 B
Makefile
# Created by: Uffe Jakobsen <uffe@uffe.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= librevisa
|
|
PORTVERSION= 0.0.20130412
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.librevisa.org/download/
|
|
|
|
MAINTAINER= uffe@uffe.org
|
|
COMMENT= Library for interfacing test and measurement equipment
|
|
|
|
USES= gmake pathfix libtool
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
# Workaround FreeBSD 9.1+ libusb not knowing LIBUSB_CLASS_APPLICATION
|
|
CPPFLAGS+= -DLIBUSB_CLASS_APPLICATION=0xfe
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${LOCALBASE}/lib/libvisa.so
|
|
|
|
.include <bsd.port.mk>
|