freebsd-ports/multimedia/cx88/Makefile
Thomas Zander 3aeeb02528 - Update to upstream release 1.4.10
- Add frontend-only and backend-only capture modes
- Allow multiple open device handles
- Add json-formatted low-level ioctl commands
- Stagify
- Correct LICENSE
- Handle stripping
- Pet portlint

PR:		190914
Submitted by:	jason.harmening@gmail.com (maintainer)
Approved by:	jason.harmening@gmail.com (maintainer), mentors (implicit)
2014-06-28 18:30:41 +00:00

58 lines
1.8 KiB
Makefile

# Created by: Jason Harmening <jason.harmening@gmail.com>
# $FreeBSD$
PORTNAME= cx88
PORTVERSION= 1.4.10
CATEGORIES= multimedia
MASTER_SITES= ftp://corona.homeunix.net/ports/cx88/
MAINTAINER= jason.harmening@gmail.com
COMMENT= Drivers for Conexant CX23880/1/2/3/5/7/8-based TV/radio capture cards
LICENSE= BSD2CLAUSE
LIB_DEPENDS= libjson-c.so:${PORTSDIR}/devel/json-c
BUILD_DEPENDS= ${LOCALBASE}/lib/libezxml.a:${PORTSDIR}/textproc/ezxml \
libtuner>=1.1.2:${PORTSDIR}/multimedia/libtuner
KMODDIR= /boot/modules
PLIST_SUB+= KMODDIR=${KMODDIR}
MAKE_ARGS+= LIBTUNER_LIB=${LOCALBASE}/lib/libtuner LIBTUNER_HEADER=${LOCALBASE}/include/libtuner KMODDIR=${KMODDIR} PREFIX=${STAGEDIR}${PREFIX}
MAKE_JOBS_UNSAFE= yes
USES= kmod pkgconfig
OPTIONS_DEFINE= DEBUG LINUX_COMPAT HAL
DEBUG_DESC= Enable debugging and verbose driver output
LINUX_COMPAT_DESC= Support for Linux DVB and radio API
HAL_DESC= Register Linux DVB devices with HAL
OPTIONS_DEFAULT= LINUX_COMPAT
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDEBUG}
MAKE_ARGS+= DIAGNOSTIC=0x7f -DDEBUG
.endif
.if ${PORT_OPTIONS:MLINUX_COMPAT}
LIB_DEPENDS+= libcuse4bsd.so:${PORTSDIR}/multimedia/cuse4bsd-kmod
BUILD_DEPENDS+= v4l_compat>=1.0.20100321:${PORTSDIR}/multimedia/v4l_compat
MAKE_ARGS+= -D WITH_LINUX_COMPAT
.if ${PORT_OPTIONS:MHAL}
LIB_DEPENDS+= libhal.so:${PORTSDIR}/sysutils/hal \
libdbus-1.so:${PORTSDIR}/devel/dbus
MAKE_ARGS+= -D WITH_HAL
.endif
.endif
MAKE_ARGS+= DEFAULT_XML_CONFIG="${EXAMPLESDIR}/cx88.xml.sample"
.if (${OSVERSION} < 802513) || ((${OSVERSION} >= 900000) && (${OSVERSION} < 900041))
IGNORE= requires kernel support for DRIVER_MODULE_ORDERED macro (FreeBSD 8.3+, FreeBSD 9.0+)
.endif
post-patch:
${REINPLACE_CMD} -e 's|install cx88 |install -s cx88 |g' ${WRKSRC}/client/Makefile
.include <bsd.port.mk>