From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Oct 19 14:10:23 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A626116A4CF for ; Tue, 19 Oct 2004 14:10:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87C5043D68 for ; Tue, 19 Oct 2004 14:10:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i9JEANhh064522 for ; Tue, 19 Oct 2004 14:10:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i9JEANkK064521; Tue, 19 Oct 2004 14:10:23 GMT (envelope-from gnats) Resent-Date: Tue, 19 Oct 2004 14:10:23 GMT Resent-Message-Id: <200410191410.i9JEANkK064521@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Michael Johnson Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B3F416A4CE; Tue, 19 Oct 2004 14:08:12 +0000 (GMT) Received: from imf21aec.mail.bellsouth.net (imf21aec.mail.bellsouth.net [205.152.59.69]) by mx1.FreeBSD.org (Postfix) with ESMTP id B867343D53; Tue, 19 Oct 2004 14:08:11 +0000 (GMT) (envelope-from ahze@blueheron.ahze.net) Received: from blueheron.ahze.net ([68.209.163.3]) by imf21aec.mail.bellsouth.netESMTP <20041019140744.EDKR22824.imf21aec.mail.bellsouth.net@blueheron.ahze.net>; Tue, 19 Oct 2004 10:07:44 -0400 Received: (from root@localhost) by blueheron.ahze.net (8.13.1/8.13.1/Submit) id i9JE7iWb086515; Tue, 19 Oct 2004 10:07:44 -0400 (EDT) (envelope-from ahze) Message-Id: <200410191407.i9JE7iWb086515@blueheron.ahze.net> Date: Tue, 19 Oct 2004 10:07:44 -0400 (EDT) From: Michael Johnson To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 cc: danfe@FreeBSD.org Subject: ports/72877: [PATCH] x11/nvidia-driver: Add link to libXvMCNVIDIA_dynamic.so.1 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Oct 2004 14:10:23 -0000 >Number: 72877 >Category: ports >Synopsis: [PATCH] x11/nvidia-driver: Add link to libXvMCNVIDIA_dynamic.so.1 >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Oct 19 14:10:23 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Michael Johnson >Release: FreeBSD 5.3-STABLE i386 >Organization: >Environment: System: FreeBSD blueheron.ahze.net 5.3-STABLE FreeBSD 5.3-STABLE #68: Sat Oct 16 21:30:18 EDT 2004 >Description: - Link libXvMCNVIDIA.so.1 to libXvMCNVIDIA_dynamic.so.1 LibXvMCNVIDIA.so.1 tells ld to link to libXvMCNVIDIA_dynamic.so.1 which currentlly does not exist. this is critical for libxine (and others?) ahze@blueheron /usr/ports/multimedia/libxine > ldd /usr/X11R6/lib/xine/plugins/1.0.0/xineplug_vo_out_xvmc.so /usr/X11R6/lib/xine/plugins/1.0.0/xineplug_vo_out_xvmc.so: libXv.so.1 => /usr/X11R6/lib/libXv.so.1 (0x28173000) libXvMC.so.1 => /usr/X11R6/lib/libXvMC.so.1 (0x28178000) libXvMCNVIDIA_dynamic.so.1 => /usr/X11R6/lib/libXvMCNVIDIA_dynamic.so.1 (0x2817b000) Port maintainer (danfe@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: run strings on /usr/X11R6/lib/libXvMCNVIDIA.so.1 or install nvidia-driver then install libxine libxine doesn't work with xvmc via nvidia. >Fix: --- nvidia-driver-1.0.6113_1.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/x11/nvidia-driver/Makefile,v retrieving revision 1.19 diff -u -r1.19 Makefile --- Makefile 27 Aug 2004 09:24:05 -0000 1.19 +++ Makefile 19 Oct 2004 13:57:13 -0000 @@ -88,6 +88,7 @@ .endif post-install: + ${LN} -sf ${PREFIX}/lib/libXvMCNVIDIA.so.1 ${PREFIX}/lib/libXvMCNVIDIA_dynamic.so.1 .if ${OSVERSION} < 500000 .for dev in 0 1 2 3 @${RM} -f /dev/nvidia${dev} Index: pkg-plist =================================================================== RCS file: /home/ncvs/ports/x11/nvidia-driver/pkg-plist,v retrieving revision 1.5 diff -u -r1.5 pkg-plist --- pkg-plist 17 Aug 2004 11:54:09 -0000 1.5 +++ pkg-plist 19 Oct 2004 13:57:28 -0000 @@ -16,8 +16,8 @@ @exec ln -sf %D/lib/libGLcore.so.1 %D/lib/libGLcore.so @unexec rm -f %D/lib/libGLcore.so lib/libXvMCNVIDIA.so.1 -@exec ln -sf %D/lib/libXvMCNVIDIA.so.1 %D/lib/libXvMCNVIDIA.so -@unexec rm -f %D/lib/libXvMCNVIDIA.so +lib/libXvMCNVIDIA.so +lib/libXvMCNVIDIA_dynamic.so.1 lib/libnvidia-tls.so.1 @exec ln -sf %D/lib/libnvidia-tls.so.1 %D/lib/libnvidia-tls.so @unexec rm -f %D/lib/libnvidia-tls.so --- nvidia-driver-1.0.6113_1.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: