freebsd-ports/security/quantis/Makefile
Mathieu Arnold 60d1a83c2a MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
  of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
  no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.

While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.

Also, replace some EXTRACT_SUFX occurences with USES=tar:*.

Checked by:	make fetch-urlall-list
With hat:	portmgr
Sponsored by:	Absolight
2015-05-14 10:15:04 +00:00

103 lines
2.5 KiB
Makefile

# Created by: Alex Dupre <ale@FreeBSD.org>
# $FreeBSD$
PORTNAME= quantis
DISTVERSION= v13.11.08
CATEGORIES= security devel java
MASTER_SITES= http://www.idquantique.com/~download/Quantis/ \
LOCAL/ale
DISTNAME= Quantis-${DISTVERSION}-src
MAINTAINER= ale@FreeBSD.org
COMMENT= Libraries and utilities to access Quantis devices
LICENSE= BSD3CLAUSE GPLv2
LICENSE_COMB= dual
LICENSE_FILE= ${WRKSRC}/Quantis-${DISTVERSION}/License.txt
OPTIONS_DEFINE= PCI USB JAVA COMPAT TOOL GUI DOCS EXAMPLES
OPTIONS_DEFAULT=PCI USB JAVA TOOL GUI
NO_OPTIONS_SORT=yes
PCI_DESC= Enable Quantis PCI support
USB_DESC= Enable Quantis USB support
JAVA_DESC= Enable Java support
COMPAT_DESC= Build API v1 compatibility libraries
TOOL_DESC= Build EasyQuantis application
GUI_DESC= Build QT4 GUI for EasyQuantis application
EXTRACT_BEFORE_ARGS= -aqo
USES= cmake compiler:c++11-lang zip:infozip
USE_QT4= # empty but required
USE_LDCONFIG= yes
SUB_FILES= pkg-message
WRKSRC= ${WRKDIR}/Quantis-${DISTVERSION}/Libs-Apps
KMODDIR?= /boot/modules
PORTDOCS= *
PORTEXAMPLES= *
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MPCI}
RUN_DEPENDS+= ${KMODDIR}/quantis.ko:${PORTSDIR}/security/quantis-kmod
.else
CMAKE_ARGS+= -DDISABLE_QUANTIS_PCI=1
.endif
.if ! ${PORT_OPTIONS:MUSB}
CMAKE_ARGS+= -DDISABLE_QUANTIS_USB=1
PKGMESSAGE= ${PKGDIR}/notexistent
.endif
.if ${PORT_OPTIONS:MJAVA}
USE_JAVA= yes
JAVA_VERSION= 1.6+
JAVA_OS= native
.else
CMAKE_ARGS+= -DDISABLE_QUANTIS_JAVA=1
.endif
.if ${PORT_OPTIONS:MCOMPAT}
CMAKE_ARGS+= -DENABLE_QUANTIS_COMPAT=1
PLIST_SUB+= COMPAT=""
.else
PLIST_SUB+= COMPAT="@comment "
.endif
.if ${PORT_OPTIONS:MTOOL}
BUILD_DEPENDS+= ${LOCALBASE}/lib/libboost_date_time.a:${PORTSDIR}/devel/boost-libs
CXXFLAGS+= -I${LOCALBASE}/include
. if ${PORT_OPTIONS:MGUI}
USE_QT4+= gui moc_build uic_build rcc_build qmake_build
. else
CMAKE_ARGS+= -DDISABLE_EASYQUANTIS_GUI=1
. endif
PLIST_SUB+= TOOL=""
.else
CMAKE_ARGS+= -DDISABLE_EASYQUANTIS=1
PLIST_SUB+= TOOL="@comment "
.endif
post-patch:
@${REINPLACE_CMD} '/ if(CMAKE_COMPILER_IS_GNU/s/)/ MATCHES "0")/' \
${WRKSRC}/CMake/CompilersFlags.cmake
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/../*.txt ${STAGEDIR}${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/../User_Manual.pdf ${STAGEDIR}${DOCSDIR}
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
@(cd ${WRKSRC}/../Samples; ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
.if ${PORT_OPTIONS:MUSB}
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/devd
${INSTALL_DATA} ${FILESDIR}/quantis.conf ${STAGEDIR}${EXAMPLESDIR}/devd
.endif
.include <bsd.port.mk>