From owner-freebsd-multimedia@FreeBSD.ORG Tue Feb 4 15:00:01 2014 Return-Path: Delivered-To: freebsd-multimedia@smarthost.ysv.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 ESMTPS id 64DCBD80 for ; Tue, 4 Feb 2014 15:00:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 369FD1654 for ; Tue, 4 Feb 2014 15:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s14F01Ih046786 for ; Tue, 4 Feb 2014 15:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.8/8.14.8/Submit) id s14F01DM046785; Tue, 4 Feb 2014 15:00:01 GMT (envelope-from gnats) Date: Tue, 4 Feb 2014 15:00:01 GMT Message-Id: <201402041500.s14F01DM046785@freefall.freebsd.org> To: freebsd-multimedia@FreeBSD.org Cc: From: Guido Falsi Subject: Re: ports/186452: [PATCH] multimedia/vlc: can' t build if net/freerdp is installed X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Guido Falsi List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 04 Feb 2014 15:00:01 -0000 The following reply was made to PR ports/186452; it has been noted by GNATS. From: Guido Falsi To: bug-followup@FreeBSD.org, nox@FreeBSD.org Cc: Subject: Re: ports/186452: [PATCH] multimedia/vlc: can't build if net/freerdp is installed Date: Tue, 04 Feb 2014 15:51:12 +0100 This is a multi-part message in MIME format. --------------050005030405070708060603 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit I sent a wrong patch, attached one is good. Sorry for the mistake. -- Guido Falsi --------------050005030405070708060603 Content-Type: text/x-patch; name="vlc.diff" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="vlc.diff" Index: Makefile =================================================================== --- Makefile (revision 342516) +++ Makefile (working copy) @@ -22,7 +22,7 @@ RUN_DEPENDS= ffmpeg>=2.0:${PORTSDIR}/multimedia/ffmpeg OPTIONS_DEFINE= A52 AALIB ASS AVAHI CACA DBUS DIRAC DOCS DTS DVDREAD \ - DVDNAV FAAD FLAC FLUID FRIBIDI GNOMEVFS GNUTLS GOOM \ + DVDNAV FAAD FLAC FLUID FREERDP FRIBIDI GNOMEVFS GNUTLS GOOM \ HTTPD JACK LIBSSH2 LIRC LIVEMEDIA LUA MAD MATROSKA MODPLUG \ MPEG2 MTP MUSEPACK NCURSES NLS NOTIFY OPTIMIZED_CFLAGS OGG \ OPUS PNG PULSEAUDIO QT4 REALAUDIO RUNROOT \ @@ -39,6 +39,7 @@ DVDREAD_DESC= DVD Playback support DVDNAV_DESC= DVD menu navigation FLUID_DESC= Fluidsynth MIDI support +FREERDP_DESC= RDP support (broken) GME_DESC= Game_Music_Emu (libgme) support GNOMEVFS_DESC= Gnome VFS support GOOM_DESC= the Goom visual effect library @@ -103,6 +104,9 @@ FLUID_LIB_DEPENDS= libfluidsynth.so:${PORTSDIR}/audio/fluidsynth FLUID_CONFIGURE_ENABLE= fluidsynth +FREERDP_LIB_DEPENDS= libfreerdp-core.so:${PORTSDIR}/net/freerdp +FREERDP_CONFIGURE_ENABLE= libfreerdp + FRIBIDI_LIB_DEPENDS= libfribidi.so:${PORTSDIR}/converters/fribidi FRIBIDI_CONFIGURE_ENABLE= fribidi @@ -297,6 +301,10 @@ # End Macro section # +.if ${PORT_OPTIONS:MFREERDP} +BROKEN= FreeRDP suppport fails to compile due to API changes. +.endif + .if ${PORT_OPTIONS:MQT4} USE_QT4= gui corelib moc_build rcc_build uic_build .endif --------------050005030405070708060603--