From owner-freebsd-ports@FreeBSD.ORG Thu Jan 8 04:15:58 2009 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 92092106566B for ; Thu, 8 Jan 2009 04:15:58 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.174]) by mx1.freebsd.org (Postfix) with ESMTP id 7823D8FC22 for ; Thu, 8 Jan 2009 04:15:57 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by ug-out-1314.google.com with SMTP id 30so1450506ugs.39 for ; Wed, 07 Jan 2009 20:15:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:mime-version:content-type:content-transfer-encoding :content-disposition; bh=ZnW9YBftTkBJnrZWEhihb8cQLWCCVX4E8YUdPF5g7qg=; b=we5Lwq3ISV/qhz1ON2+SkyS7mEIQykk/hzc0KFGOMMqybBFfsnIgnYTETtEpLFqjSf Lb8IaFmrg3C2/rPCsAJZOwfHrtkoqmS/lNOONJQ0zBzIBUCVfqoeGuIl4iqX0MxeaW+b jGH0YV9oGJ5waGJgJ/Oe1okGY3BW0gmV23VVw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:mime-version:content-type :content-transfer-encoding:content-disposition; b=sv7saNatFLd/9GKo6IBgTr16JWS06hqdwbGE7AATewtZA3MqjJRYSYN+qrE2Z05yPK yQy+tLwfNGKbpdU8gepOyXvnpAhhKUAbVFStiOe8l06D0SH3hl5lmjM0L9U1IZylgh8K FzYZs1qZBJc0wSHIhnZV4EwF5e40VTyDGawGA= Received: by 10.66.219.15 with SMTP id r15mr11766574ugg.16.1231388156078; Wed, 07 Jan 2009 20:15:56 -0800 (PST) Received: by 10.67.88.9 with HTTP; Wed, 7 Jan 2009 20:15:56 -0800 (PST) Message-ID: <7d6fde3d0901072015s3f1d904btdb030e226b15fe26@mail.gmail.com> Date: Wed, 7 Jan 2009 20:15:56 -0800 From: "Garrett Cooper" To: lioux@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: FreeBSD Ports Mailing List Subject: Update multimedia/gstreamer* and associated ports? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jan 2009 04:15:58 -0000 Hello Mario and Porters, Trying to setup mplayer to play DVD's on my blueray player, one of the suggested means to do this was to try out mplayer from SVN. Unfortunately I ran into some issues with x264_t, and to make a long story short I realized I needed to update the gstreamer codecs so that they were at least ABI compatible with the ABI in-use with mplayer. So far I've discovered that: 1. -{good,bad,ugly} ports minor revisions have been bumped to {11,9,10}, respectively. 2. make all doesn't work. It barfs when trying to install a documentation item: (installfiles=`echo ./html/*.sgml ./html/*.html ./html/*.png ./html/*.css`; \ if test "$installfiles" = './html/*.sgml ./html/*.html ./html/*.png ./html/*.css'; \ then echo '-- Nothing to install' ; \ else \ /bin/sh ../../mkinstalldirs /usr/local/share/gtk-doc/html/gst-plugins-base-libs-0.10; \ for i in $installfiles; do \ echo '-- Installing '$i ; \ install -o root -g wheel -m 444 $i /usr/local/share/gtk-doc/html/gst-plugins-base-libs-0.10; \ done; \ echo '-- Installing ./html/gst-plugins-base-libs.devhelp' ; \ install -o root -g wheel -m 444 ./html/gst-plugins-base-libs.devhelp \ /usr/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp; \ if test -e ./html/gst-plugins-base-libs.devhelp2; then \ install -o root -g wheel -m 444 ./html/gst-plugins-base-libs.devhelp2 \ /usr/local/share/gtk-doc/html/gst-plugins-base-libs-0.10/gst-plugins-base-libs-0.10.devhelp2; \ fi; \ which gtkdoc-rebase >/dev/null && \ gtkdoc-rebase --relative --dest-dir= --html-dir=/usr/local/share/gtk-doc/html/gst-plugins-base-libs-0.10 ; \ fi) # ... -- Installing ./html/style.css -- Installing ./html/gst-plugins-base-libs.devhelp gmake[3]: *** [install-data-local] Error 1 gmake[3]: Leaving directory `/usr/ports/multimedia/gstreamer-plugins/work/gst-plugins-base-0.10.21/docs/libs' gmake[2]: *** [install-am] Error 2 gmake[2]: Leaving directory `/usr/ports/multimedia/gstreamer-plugins/work/gst-plugins-base-0.10.21/docs/libs' gmake[1]: *** [install-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/multimedia/gstreamer-plugins/work/gst-plugins-base-0.10.21/docs' gmake: *** [install-recursive] Error 1 *** Error code 2 Turns out the problem is because gtkdoc-rebase isn't installed on my machine. What would be the best means to avoid installing it (is there already a ports knob to do this with Gnome stuff?)?? I'll have to verify that the patches are indeed not needed before submitting the updated port to you (the patch failed for all 4 files). Thanks! -Garrett