- Update to 1.4.3

--Add support for HAL registration of DVB devices (required by Kaffeine)
--New input source selection mechanism for capture app
--Various usability/performance improvements

PR:		ports/169086
Submitted by:	Jason Harmening <jason.harmening@gmail.com> (maintainer)
This commit is contained in:
Sylvio Cesar Teixeira 2012-06-17 23:38:12 +00:00
parent abca9ee880
commit e14f763f7f
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=299526
2 changed files with 31 additions and 8 deletions

View file

@ -6,7 +6,7 @@
#
PORTNAME= cx88
PORTVERSION= 1.4.2
PORTVERSION= 1.4.3
CATEGORIES= multimedia kld
MASTER_SITES= ftp://corona.homeunix.net/ports/cx88/
@ -17,24 +17,47 @@ LICENSE= BSD
LIB_DEPENDS= tuner.1:${PORTSDIR}/multimedia/libtuner
BUILD_DEPENDS= ${LOCALBASE}/lib/libezxml.a:${PORTSDIR}/textproc/ezxml \
libtuner>=1.0.8:${PORTSDIR}/multimedia/libtuner
libtuner>=1.0.9:${PORTSDIR}/multimedia/libtuner
KMODDIR= /boot/modules
PLIST_SUB+= KMODDIR=${KMODDIR}
MAKE_ARGS+= LIBTUNER_LIB=${LOCALBASE}/lib/libtuner LIBTUNER_HEADER=${LOCALBASE}/include/libtuner KMODDIR=${KMODDIR}
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= DEBUG LINUX_COMPAT HAL
DEBUG_DESC= Build with debugging and verbose output enabled
LINUX_COMPAT_DESC= Support for Linux DVB and radio devices (requires FreeBSD 8.1+)
HAL_DESC= Register Linux DVB devices with HAL
OPTIONS_DEFAULT= LINUX_COMPAT
.include <bsd.port.options.mk>
.include <bsd.port.pre.mk>
.if ${PORT_OPTIONS:MDEBUG}
MAKE_ARGS+= DIAGNOSTIC=0x7f
.endif
.if (${OSVERSION} >= 801000)
LIB_DEPENDS+= cuse4bsd.1:${PORTSDIR}/multimedia/cuse4bsd-kmod
BUILD_DEPENDS+= v4l_compat>=1.0.20100321:${PORTSDIR}/multimedia/v4l_compat \
.if ${PORT_OPTIONS:MLINUX_COMPAT}
LIB_DEPENDS+= cuse4bsd.1:${PORTSDIR}/multimedia/cuse4bsd-kmod
BUILD_DEPENDS+= v4l_compat>=1.0.20100321:${PORTSDIR}/multimedia/v4l_compat \
cuse4bsd-kmod>=0.1.12:${PORTSDIR}/multimedia/cuse4bsd-kmod
MAKE_ARGS+= -D WITH_LINUX_COMPAT
MAKE_ARGS+= -D WITH_LINUX_COMPAT
.if ${PORT_OPTIONS:MHAL}
LIB_DEPENDS+= hal.1:${PORTSDIR}/sysutils/hal \
dbus-1:${PORTSDIR}/devel/dbus
BUILD_DEPENDS+= hal>=0.5.14:${PORTSDIR}/sysutils/hal \
dbus>=1.4.0:${PORTSDIR}/devel/dbus
MAKE_ARGS+= -D WITH_HAL
.endif
.endif
.endif
.if (${OSVERSION} < 704000) || ((${OSVERSION} >= 800000) && (${OSVERSION} < 801000))
IGNORE= requires kernel support for kmem_alloc_attr() (FreeBSD 7.4+, FreeBSD 8.1+)
IGNORE= requires kernel support for kmem_alloc_attr() (FreeBSD 7.4+, FreeBSD 8.1+)
.endif
.if !exists(${SRC_BASE}/sys/Makefile)

View file

@ -1,2 +1,2 @@
SHA256 (cx88-1.4.2.tar.gz) = c9127481fbed600452f043ae3f395c29b2cac88db5ee84f1786f07336ca7c8ec
SIZE (cx88-1.4.2.tar.gz) = 182216
SHA256 (cx88-1.4.3.tar.gz) = 5955ea85157faa049ac1977c11815f967b6006ebe7e9b4602b71452087834411
SIZE (cx88-1.4.3.tar.gz) = 186964