From owner-freebsd-multimedia@FreeBSD.ORG Sun Aug 27 00:45:44 2006 Return-Path: X-Original-To: multimedia@FreeBSD.org Delivered-To: freebsd-multimedia@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 41E8016A4DA for ; Sun, 27 Aug 2006 00:45:44 +0000 (UTC) (envelope-from brian@Awfulhak.org) Received: from storm.uk.FreeBSD.org (storm.uk.FreeBSD.org [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CEFD43D45 for ; Sun, 27 Aug 2006 00:45:43 +0000 (GMT) (envelope-from brian@Awfulhak.org) Received: from gw.Awfulhak.org (root@gw.lan.Awfulhak.org [172.16.0.1]) by storm.uk.FreeBSD.org (8.13.6/8.13.6) with ESMTP id k7R0jeNR008554; Sun, 27 Aug 2006 01:45:40 +0100 (BST) (envelope-from brian@Awfulhak.org) Received: from dev.lan.Awfulhak.org (brian@dev.lan.Awfulhak.org [172.16.0.5]) by gw.Awfulhak.org (8.13.6/8.13.6) with ESMTP id k7R0jbrA038306; Sat, 26 Aug 2006 17:45:37 -0700 (PDT) (envelope-from brian@Awfulhak.org) Date: Sat, 26 Aug 2006 17:45:36 -0700 From: Brian Somers To: multimedia@FreeBSD.org Message-ID: <20060826174536.24aaa307@dev.lan.Awfulhak.org> X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary=MP_n_UQoOuOoeukltoTAqzpUvB X-Spam-Status: No, score=-1.4 required=5.0 tests=ALL_TRUSTED autolearn=failed version=3.1.4 X-Spam-Checker-Version: SpamAssassin 3.1.4 (2006-07-25) on gw.lan.Awfulhak.org Cc: Subject: Fw: vlc port mozilla plugin doesn't install (patch) X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Aug 2006 00:45:44 -0000 --MP_n_UQoOuOoeukltoTAqzpUvB Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi, This looks good. I'm forwarding to multimedia@ as they're the current maintainers. Cheers. Begin forwarded message: Date: Fri, 25 Aug 2006 21:09:20 -0400 From: Mitch To: brian@freebsd.org Subject: vlc port mozilla plugin doesn't install (patch) Hi, You are listed as the maintainer for multimedia/vlc. Currently, WITH_VLC_MOZILLA_PLUGIN builds the plugin fine, but does not install it. Looks like a typo. Attached is a simple patch that I confirmed. If you'd rather I deal with this some other way, say so, or just ignore me and I'll send-pr it in a few days. note: resending this due to mta problems, hope it's not a dupe for you Thanks, Mitch -- Brian Somers Don't _EVER_ lose your sense of humour ! --MP_n_UQoOuOoeukltoTAqzpUvB Content-Type: text/plain; name=vlc_pluginfix.patch Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename=vlc_pluginfix.patch --- Makefile.inc.orig Fri Aug 25 16:16:27 2006 +++ Makefile.inc Fri Aug 25 16:17:08 2006 @@ -344,7 +344,7 @@ ${CPIO} -vpdm -L -R ${LIBOWN}:${LIBGRP} ${PREFIX}/lib cd ${FAKEDIR}/share && ${FIND} . | \ ${CPIO} -vpdm -L -R ${SHAREOWN} ${PREFIX}/share -.if defined(WITH_VLC_MOZILLA_PLUGIN) && !defined(WITH_VLC_MOZILLA_PLUGIN) +.if defined(WITH_VLC_MOZILLA_PLUGIN) && !defined(WITHOUT_VLC_MOZILLA_PLUGIN) @${MKDIR} ${PREFIX}/lib/browser_plugins ${INSTALL_DATA} ${FAKEDIR}/mozilla/* ${PREFIX}/lib/browser_plugins .endif --MP_n_UQoOuOoeukltoTAqzpUvB--