From owner-svn-ports-all@FreeBSD.ORG Thu Aug 29 18:03:04 2013 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D1EC5BAE; Thu, 29 Aug 2013 18:03:04 +0000 (UTC) (envelope-from nox@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BF7EB2D1D; Thu, 29 Aug 2013 18:03:04 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r7TI34eP092554; Thu, 29 Aug 2013 18:03:04 GMT (envelope-from nox@svn.freebsd.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r7TI33jG092549; Thu, 29 Aug 2013 18:03:04 GMT (envelope-from nox@svn.freebsd.org) Message-Id: <201308291803.r7TI33jG092549@svn.freebsd.org> From: Juergen Lock Date: Thu, 29 Aug 2013 18:03:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r325619 - in head/multimedia/webcamd: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Aug 2013 18:03:04 -0000 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