mirror of
https://git.freebsd.org/ports.git
synced 2025-07-16 16:59:17 -04:00
- 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:
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
|
@ -6,7 +6,7 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
PORTNAME= cx88
|
PORTNAME= cx88
|
||||||
PORTVERSION= 1.4.2
|
PORTVERSION= 1.4.3
|
||||||
CATEGORIES= multimedia kld
|
CATEGORIES= multimedia kld
|
||||||
MASTER_SITES= ftp://corona.homeunix.net/ports/cx88/
|
MASTER_SITES= ftp://corona.homeunix.net/ports/cx88/
|
||||||
|
|
||||||
|
@ -17,24 +17,47 @@ LICENSE= BSD
|
||||||
|
|
||||||
LIB_DEPENDS= tuner.1:${PORTSDIR}/multimedia/libtuner
|
LIB_DEPENDS= tuner.1:${PORTSDIR}/multimedia/libtuner
|
||||||
BUILD_DEPENDS= ${LOCALBASE}/lib/libezxml.a:${PORTSDIR}/textproc/ezxml \
|
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
|
KMODDIR= /boot/modules
|
||||||
PLIST_SUB+= KMODDIR=${KMODDIR}
|
PLIST_SUB+= KMODDIR=${KMODDIR}
|
||||||
MAKE_ARGS+= LIBTUNER_LIB=${LOCALBASE}/lib/libtuner LIBTUNER_HEADER=${LOCALBASE}/include/libtuner KMODDIR=${KMODDIR}
|
MAKE_ARGS+= LIBTUNER_LIB=${LOCALBASE}/lib/libtuner LIBTUNER_HEADER=${LOCALBASE}/include/libtuner KMODDIR=${KMODDIR}
|
||||||
MAKE_JOBS_UNSAFE= yes
|
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>
|
.include <bsd.port.pre.mk>
|
||||||
|
|
||||||
|
.if ${PORT_OPTIONS:MDEBUG}
|
||||||
|
MAKE_ARGS+= DIAGNOSTIC=0x7f
|
||||||
|
.endif
|
||||||
|
|
||||||
.if (${OSVERSION} >= 801000)
|
.if (${OSVERSION} >= 801000)
|
||||||
LIB_DEPENDS+= cuse4bsd.1:${PORTSDIR}/multimedia/cuse4bsd-kmod
|
.if ${PORT_OPTIONS:MLINUX_COMPAT}
|
||||||
BUILD_DEPENDS+= v4l_compat>=1.0.20100321:${PORTSDIR}/multimedia/v4l_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
|
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
|
.endif
|
||||||
|
|
||||||
.if (${OSVERSION} < 704000) || ((${OSVERSION} >= 800000) && (${OSVERSION} < 801000))
|
.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
|
.endif
|
||||||
|
|
||||||
.if !exists(${SRC_BASE}/sys/Makefile)
|
.if !exists(${SRC_BASE}/sys/Makefile)
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
SHA256 (cx88-1.4.2.tar.gz) = c9127481fbed600452f043ae3f395c29b2cac88db5ee84f1786f07336ca7c8ec
|
SHA256 (cx88-1.4.3.tar.gz) = 5955ea85157faa049ac1977c11815f967b6006ebe7e9b4602b71452087834411
|
||||||
SIZE (cx88-1.4.2.tar.gz) = 182216
|
SIZE (cx88-1.4.3.tar.gz) = 186964
|
||||||
|
|
Loading…
Add table
Reference in a new issue