Date: Thu, 29 Aug 2013 18:03:03 +0000 (UTC) From: Juergen Lock <nox@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325619 - in head/multimedia/webcamd: . files Message-ID: <201308291803.r7TI33jG092549@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: nox Date: Thu Aug 29 18:03:03 2013 New Revision: 325619 URL: http://svnweb.freebsd.org/changeset/ports/325619 Log: Update to 3.11.0.2 . Submitted by: hselasky (maintainer) Modified: head/multimedia/webcamd/Makefile head/multimedia/webcamd/distinfo head/multimedia/webcamd/files/webcamd.in (contents, props changed) head/multimedia/webcamd/pkg-message Modified: head/multimedia/webcamd/Makefile ============================================================================== --- head/multimedia/webcamd/Makefile Thu Aug 29 17:56:43 2013 (r325618) +++ head/multimedia/webcamd/Makefile Thu Aug 29 18:03:03 2013 (r325619) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= webcamd -PORTVERSION= 3.10.0.7 +PORTVERSION= 3.11.0.2 CATEGORIES= multimedia MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \ http://home.selasky.org:8192/distfiles/ @@ -36,13 +36,18 @@ MAN8= webcamd.8 LIBDIR= ${PREFIX}/lib -OPTIONS_DEFINE= HAL DEBUG VT_CLIENT VT_SERVER -OPTIONS_DEFAULT=HAL +OPTIONS_DEFINE= DEBUG HAL VT_CLIENT VT_SERVER DVB INPUT RADIO WEBCAM +OPTIONS_DEFAULT=DVB HAL INPUT RADIO WEBCAM HAL_DESC= Build with HAL and DBUS support DEBUG_DESC= Build with debugging support VT_CLIENT_DESC= Build with vTuner client support VT_SERVER_DESC= Build with vTuner server support +DVB_DESC= Build with USB DVB support (DVB-X, analog TV, ...) +INPUT_DESC= Build with USB input support (tablet, joystick, IR, ...) +RADIO_DESC= Build with USB radio support +WEBCAM_DESC= Build with USB webcam support (UVC, gspca, ...) + USERS= webcamd GROUPS= webcamd @@ -53,6 +58,22 @@ LIBCUSE=${LIBDIR}/libcuse4bsd.so MAKE_ARGS+=" HAVE_MAN=YES" MAKE_ARGS+=" PTHREAD_LIBS=${PTHREAD_LIBS}" +.if ${PORT_OPTIONS:MDVB} +MAKE_ARGS+=" HAVE_DVB_DRV=YES" +.endif + +.if ${PORT_OPTIONS:MINPUT} +MAKE_ARGS+=" HAVE_INPUT_DRV=YES" +.endif + +.if ${PORT_OPTIONS:MRADIO} +MAKE_ARGS+=" HAVE_RADIO_DRV=YES" +.endif + +.if ${PORT_OPTIONS:MWEBCAM} +MAKE_ARGS+=" HAVE_WEBCAM_DRV=YES" +.endif + .if ${PORT_OPTIONS:MHAL} MAKE_ARGS+=" HAVE_HAL=YES" LIBHAL=${LIBDIR}/libhal.so:${LIBDIR}/libdbus-1.so: @@ -83,7 +104,7 @@ IGNORE= requires FreeBSD 8.0-RELEASE or # do-configure: ${MAKE} -C${WRKSRC}/tools/linux_make - ${MAKE} configure -C${WRKSRC} + ${MAKE} ${MAKE_ARGS} configure -C${WRKSRC} post-patch: @cd ${WRKSRC}/patches; ${SH} ./do_patch.sh Modified: head/multimedia/webcamd/distinfo ============================================================================== --- head/multimedia/webcamd/distinfo Thu Aug 29 17:56:43 2013 (r325618) +++ head/multimedia/webcamd/distinfo Thu Aug 29 18:03:03 2013 (r325619) @@ -1,2 +1,2 @@ -SHA256 (webcamd-3.10.0.7.tar.bz2) = cb038ae7eadfd36f238212b4267c2f99698b2f028738910123b9cd84ebfdace1 -SIZE (webcamd-3.10.0.7.tar.bz2) = 9130543 +SHA256 (webcamd-3.11.0.2.tar.bz2) = f8a6bb8b031b62e3a0506c119ea70bd4674cddec11dae742eecad5024b3ba138 +SIZE (webcamd-3.11.0.2.tar.bz2) = 9317774 Modified: head/multimedia/webcamd/files/webcamd.in ============================================================================== --- head/multimedia/webcamd/files/webcamd.in Thu Aug 29 17:56:43 2013 (r325618) +++ head/multimedia/webcamd/files/webcamd.in Thu Aug 29 18:03:03 2013 (r325619) @@ -8,6 +8,10 @@ # # webcamd_enable="YES" # +# Optional: +# webcamd_flags="-m v4l2.vflip=1" +# webcamd_flags="-m v4l2.hflip=1" +# webcamd_enable=${webcamd_enable-"NO"} hald_enable=${hald_enable-"NO"} @@ -33,14 +37,6 @@ pidfile="/var/run/webcamd.*.$iface.pid" load_rc_config $name -if [ "$2" = "vflip" ] || [ "$3" = "vflip" ]; then - command_args="$command_args -m v4l2.vflip=1" -fi - -if [ "$2" = "hflip" ] || [ "$3" = "hflip" ]; then - command_args="$command_args -m v4l2.hflip=1" -fi - if [ $# -gt 1 ]; then pidfile="webcamd.dummy" command_args="$command_args -d $2 -i $iface" Modified: head/multimedia/webcamd/pkg-message ============================================================================== --- head/multimedia/webcamd/pkg-message Thu Aug 29 17:56:43 2013 (r325618) +++ head/multimedia/webcamd/pkg-message Thu Aug 29 18:03:03 2013 (r325619) @@ -10,7 +10,11 @@ or adding to your /boot/loader.conf. -2) Please restart devd as the configuration changed +2) add webcamd_enable="YES" + +to your /etc/rc.conf + +3) Please restart devd as the configuration changed # service devd restart
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308291803.r7TI33jG092549>