Re: Mozilla plugins broken after port upgrade

2006-01-03 Thread Chris Whitehouse

Chris Hill wrote:


This led me to 
http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107925.html 


...which was exactly what I was looking for.


For acroread make sure you rename /usr/local/bin/acroread7
to /usr/local/bin/acroread.



Beech,

Thank you that, and especially thank you for writing the 107925 post 
referred to above. Your procedure worked beautifully.


Did the 107925 post work for you? it was superceded by
http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107927.html 
which corrected a typo, specifically


rm -rf /usr/X11R6/lib/browser_plugins /usr/X11R6/lib/browser_linux_plugins

(possibly wrapped) was replaced by

rm -rf /usr/X11R6/lib/browser_linux_plugins

I used the second and it worked. I can't see how the first would work 
(but that doesn't mean much :).


Chris
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mozilla plugins broken after port upgrade

2006-01-03 Thread Beech Rintoul
On Tuesday 03 January 2006 02:11 pm, Chris Whitehouse wrote:
 Chris Hill wrote:
  This led me to
  http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107925
 .html
 
  ...which was exactly what I was looking for.
 
  For acroread make sure you rename /usr/local/bin/acroread7
  to /usr/local/bin/acroread.
 
  Beech,
 
  Thank you that, and especially thank you for writing the 107925 post
  referred to above. Your procedure worked beautifully.

 Did the 107925 post work for you? it was superceded by
 http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107927.h
tml which corrected a typo, specifically

 rm -rf /usr/X11R6/lib/browser_plugins /usr/X11R6/lib/browser_linux_plugins

 (possibly wrapped) was replaced by

 rm -rf /usr/X11R6/lib/browser_linux_plugins

 I used the second and it worked. I can't see how the first would work
 (but that doesn't mean much :).

That was a typo, I attached the text file. Sorry about that.

Beech
-- 

---
Beech Rintoul - System Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | NorthWind Communications
\ / - NO HTML/RTF in e-mail  | 201 East 9th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - Please visit Alaska Paradise - http://akparadise.byethost33.com
---











## Workaround for broken port linuxpluginwrapper.
## Beech Rintoul - [EMAIL PROTECTED]

## Before building linuxpluginwrapper:

rm -R /usr/X11R6/lib/browser_linux_plugins

ln -s /usr/X11R6/lib/browser_plugins /usr/X11R6/lib/browser_linux_plugins


## Build linuxpluginwrapper:

cd /usr/ports/www/linuxpluginwrapper

make -DWITH_PLUGINS install clean

## or upgrade:

portupgrade -vm -DWITH_PLUGINS linuxpluginwrapper

## Remove symlink (Will break Mozilla).

rm -rf /usr/X11R6/lib/browser_linux_plugins

## Fix acroread:

rm -rf /usr/local/bin/acroread  # If upgrade.

mv  /usr/local/bin/acroread7  /usr/local/bin/acroread

rm -rf /usr/X11R6/lib/browser_plugins/nppdf.so

ln -s  
/usr/local/lib/acroread/usr/local/Adobe/Acrobat7.0/Browser/intellinux/nppdf.so 
/usr/X11R6/lib/browser_plugins/nppdf.so

## Change path to nppdf.so in /etc/libmap.conf:

# Acrobat7 with Mozilla/Firebird/Galeon/Epiphany/Konqueror
[/usr/local/lib/acroread/usr/local/Adobe/Acrobat7.0/Browser/intellinux/nppdf.so]
 
libc.so.6   pluginwrapper/acrobat.so

## Note:
## Acroread now works properly in browser.
## Helix plugin does not work with Firefox or Mozilla at this time. 
## Flash 6.0 works without modification.
## Flash7 is VERY unstable and will crash Firefox (possibly Mozilla).

## Launch browser and type about:plugins without the quotes to check that 
plugins are enabled.___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: Mozilla plugins broken after port upgrade

2006-01-03 Thread Chris Hill

On Tue, 3 Jan 2006, Chris Whitehouse wrote:


Chris Hill wrote:


[snip]


Beech,

Thank you that, and especially thank you for writing the 107925 post 
referred to above. Your procedure worked beautifully.


Did the 107925 post work for you? it was superceded by
http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107927.html 
which corrected a typo, specifically


rm -rf /usr/X11R6/lib/browser_plugins /usr/X11R6/lib/browser_linux_plugins

(possibly wrapped) was replaced by

rm -rf /usr/X11R6/lib/browser_linux_plugins

I used the second and it worked. I can't see how the first would work (but 
that doesn't mean much :).


I figured that part out myself :^)  What I actually did was rename the 
browser_linux_plugins directory in case I needed it back.


--
Chris Hill   [EMAIL PROTECTED]
** [ Busy Expunging | ]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mozilla plugins broken after port upgrade

2006-01-02 Thread Chris Hill

On Fri, 30 Dec 2005, Beech Rintoul wrote:


On Friday 30 December 2005 10:22 am, Micah wrote:

Chris Hill wrote:

On Thu, 29 Dec 2005, Micah wrote:

Chris Hill wrote:


[snip]


The specific issues are with acroread7, flash and mplayer-plugin. All
of these worked as plug-ins before the upgrade, but now none of them
do.


[snip]


Search the list archives for Flash Plugin in 6.0 and Flash no
longer displayed in Firefox.


Neither of those search terms yields any results,


[snip]


The mailman search interface is screwed up, and the FreeBSD search
engine and Google haven't indexed recent threads yet.  A look through
December's archives would've turned these up.

http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107922.h
tml
http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107098.h
tml


Micah,

This led me to 
http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107925.html

...which was exactly what I was looking for.


For acroread make sure you rename /usr/local/bin/acroread7
to /usr/local/bin/acroread.


Beech,

Thank you that, and especially thank you for writing the 107925 post 
referred to above. Your procedure worked beautifully.


--
Chris Hill   [EMAIL PROTECTED]
** [ Busy Expunging | ]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mozilla plugins broken after port upgrade

2006-01-02 Thread Beech Rintoul
On Monday 02 January 2006 01:44 pm, Chris Hill wrote:
 On Fri, 30 Dec 2005, Beech Rintoul wrote:
  On Friday 30 December 2005 10:22 am, Micah wrote:
  Chris Hill wrote:
  On Thu, 29 Dec 2005, Micah wrote:
  Chris Hill wrote:
 
  [snip]
 
  The specific issues are with acroread7, flash and mplayer-plugin. All
  of these worked as plug-ins before the upgrade, but now none of them
  do.
 
  [snip]
 
  Search the list archives for Flash Plugin in 6.0 and Flash no
  longer displayed in Firefox.
 
  Neither of those search terms yields any results,

 [snip]

  The mailman search interface is screwed up, and the FreeBSD search
  engine and Google haven't indexed recent threads yet.  A look through
  December's archives would've turned these up.
 
  http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/10792
 2.h tml
  http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/10709
 8.h tml

 Micah,

 This led me to
 http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107925.h
tml ...which was exactly what I was looking for.

  For acroread make sure you rename /usr/local/bin/acroread7
  to /usr/local/bin/acroread.

 Beech,

 Thank you that, and especially thank you for writing the 107925 post
 referred to above. Your procedure worked beautifully.


You're welcome. I was working on a patch to fix those problems, but an update 
to -CURRENT broke the linuxpluginwrapper port and it doesn't compile. Our 
6-STABLE machines are all in production and I don't want to experiment on 
them. I'll just have to wait till the port maintainer fixes the probs. with 
-CURRENT and I'll address it from there. AFIK, the fixes I posted still work 
with 6 and below. 

FWIW, I've emailed the maintainer a couple of times with questions about 
linuxpluginwrapper and received no response, so I don't have any idea about 
the state of this port.

Beech

-- 

---
Beech Rintoul - System Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | NorthWind Communications
\ / - NO HTML/RTF in e-mail  | 201 East 9th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - Please visit Alaska Paradise - http://akparadise.byethost33.com
---













pgpzJ6G7hTKUX.pgp
Description: PGP signature


Re: Mozilla plugins broken after port upgrade

2005-12-30 Thread Chris Hill

On Thu, 29 Dec 2005, Micah wrote:


Chris Hill wrote:


[snip]

The specific issues are with acroread7, flash and mplayer-plugin. All 
of these worked as plug-ins before the upgrade, but now none of them 
do.


[snip]

Search the list archives for Flash Plugin in 6.0 and Flash no longer 
displayed in Firefox.


Neither of those search terms yields any results, but you've given me 
another direction to look. I searched the archives yet again, this time 
on 'linuxpluginwrapper'. Found 
http://www.freebsd.org/cgi/getmsg.cgi?fetch=751336+0+/usr/local/www/db/text/2005/freebsd-questions/20051120.freebsd-questions


...based on which, I did
# ln -s /usr/X11R6/lib/linux-flashplugin6/libflashplayer.so
/usr/X11R6/lib/browser_plugins/

This fixed things partially. A visit to 
http://www.macromedia.com/shockwave/welcome/

shows that regular flash works, but not shockwave.

Still no luck with PDFs or mplayer-plugin.

Another result from my archive search was 
http://www.freebsd.org/cgi/getmsg.cgi?fetch=1310074+1313109+/usr/local/www/db/text/2005/freebsd-questions/20051120.freebsd-questions 
...which revealed the existence of the WITH_PLUGINS make knob for 
linuxpluginwrapper, so I did

tripel# cd /usr/ports/www/linuxpluginwrapper
tripel# make deinstall
tripel# make -DWITH_PLUGINS reinstall

...which resulted in no change.

I'm at a loss regarding the mplayer-plugin stuff. As for Acrobat, I'd 
bet it has something to do with the disappearance of the path 
/usr/compat/linux/usr/local/Adobe/Acrobat7.0/Reader/intellinux/bin, but 
I don't know how that came to exist or why it no longer does.


It's an issue with the linuxpluginwrapper port, several methods to 
make it work are described in those recent threads.


Thank you for the pointer, especially for the speed of your post.


HTH,
Micah


It did, a little. Thank you.

But it's still vexing that all this stuff worked fine before, and that 
the upgrade seems to have broken it. I'm also curious why 
about:plugins shows, for example, mplayer-plugin installed for a wide 
variety of MIME-types, but trying to access online videos no longer 
starts mplayer-plugin as it did before the upgrade.


My meta-question remains: Is this documented, and if so, where?

--
Chris Hill   [EMAIL PROTECTED]
** [ Busy Expunging | ]
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mozilla plugins broken after port upgrade

2005-12-30 Thread Micah

Chris Hill wrote:

On Thu, 29 Dec 2005, Micah wrote:


Chris Hill wrote:



[snip]

The specific issues are with acroread7, flash and mplayer-plugin. All 
of these worked as plug-ins before the upgrade, but now none of them do.



[snip]

Search the list archives for Flash Plugin in 6.0 and Flash no 
longer displayed in Firefox.



Neither of those search terms yields any results, but you've given me 
another direction to look. I searched the archives yet again, this time 
on 'linuxpluginwrapper'. Found 
http://www.freebsd.org/cgi/getmsg.cgi?fetch=751336+0+/usr/local/www/db/text/2005/freebsd-questions/20051120.freebsd-questions 



...based on which, I did
# ln -s /usr/X11R6/lib/linux-flashplugin6/libflashplayer.so
/usr/X11R6/lib/browser_plugins/

This fixed things partially. A visit to 
http://www.macromedia.com/shockwave/welcome/

shows that regular flash works, but not shockwave.

Still no luck with PDFs or mplayer-plugin.

Another result from my archive search was 
http://www.freebsd.org/cgi/getmsg.cgi?fetch=1310074+1313109+/usr/local/www/db/text/2005/freebsd-questions/20051120.freebsd-questions 
...which revealed the existence of the WITH_PLUGINS make knob for 
linuxpluginwrapper, so I did

tripel# cd /usr/ports/www/linuxpluginwrapper
tripel# make deinstall
tripel# make -DWITH_PLUGINS reinstall

...which resulted in no change.

I'm at a loss regarding the mplayer-plugin stuff. As for Acrobat, I'd 
bet it has something to do with the disappearance of the path 
/usr/compat/linux/usr/local/Adobe/Acrobat7.0/Reader/intellinux/bin, but 
I don't know how that came to exist or why it no longer does.


It's an issue with the linuxpluginwrapper port, several methods to 
make it work are described in those recent threads.



Thank you for the pointer, especially for the speed of your post.


HTH,
Micah



It did, a little. Thank you.

But it's still vexing that all this stuff worked fine before, and that 
the upgrade seems to have broken it. I'm also curious why 
about:plugins shows, for example, mplayer-plugin installed for a wide 
variety of MIME-types, but trying to access online videos no longer 
starts mplayer-plugin as it did before the upgrade.


My meta-question remains: Is this documented, and if so, where?

--
Chris Hill   [EMAIL PROTECTED]
** [ Busy Expunging | ]


The mailman search interface is screwed up, and the FreeBSD search 
engine and Google haven't indexed recent threads yet.  A look through 
December's archives would've turned these up.


http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107922.html
http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107098.html

HTH,
Micah
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Mozilla plugins broken after port upgrade

2005-12-30 Thread Beech Rintoul
On Friday 30 December 2005 10:22 am, Micah wrote:
 Chris Hill wrote:
  On Thu, 29 Dec 2005, Micah wrote:
  Chris Hill wrote:
 
  [snip]
 
  The specific issues are with acroread7, flash and mplayer-plugin. All
  of these worked as plug-ins before the upgrade, but now none of them
  do.
 
  [snip]
 
  Search the list archives for Flash Plugin in 6.0 and Flash no
  longer displayed in Firefox.
 
  Neither of those search terms yields any results, but you've given me
  another direction to look. I searched the archives yet again, this time
  on 'linuxpluginwrapper'. Found
  http://www.freebsd.org/cgi/getmsg.cgi?fetch=751336+0+/usr/local/www/db/te
 xt/2005/freebsd-questions/20051120.freebsd-questions
 
 
  ...based on which, I did
  # ln -s /usr/X11R6/lib/linux-flashplugin6/libflashplayer.so
  /usr/X11R6/lib/browser_plugins/
 
  This fixed things partially. A visit to
  http://www.macromedia.com/shockwave/welcome/
  shows that regular flash works, but not shockwave.
 
  Still no luck with PDFs or mplayer-plugin.
 
  Another result from my archive search was
  http://www.freebsd.org/cgi/getmsg.cgi?fetch=1310074+1313109+/usr/local/ww
 w/db/text/2005/freebsd-questions/20051120.freebsd-questions ...which
  revealed the existence of the WITH_PLUGINS make knob for
  linuxpluginwrapper, so I did
  tripel# cd /usr/ports/www/linuxpluginwrapper
  tripel# make deinstall
  tripel# make -DWITH_PLUGINS reinstall
 
  ...which resulted in no change.
 
  I'm at a loss regarding the mplayer-plugin stuff. As for Acrobat, I'd
  bet it has something to do with the disappearance of the path
  /usr/compat/linux/usr/local/Adobe/Acrobat7.0/Reader/intellinux/bin, but
  I don't know how that came to exist or why it no longer does.
 
  It's an issue with the linuxpluginwrapper port, several methods to
  make it work are described in those recent threads.
 
  Thank you for the pointer, especially for the speed of your post.
 
  HTH,
  Micah
 
  It did, a little. Thank you.
 
  But it's still vexing that all this stuff worked fine before, and that
  the upgrade seems to have broken it. I'm also curious why
  about:plugins shows, for example, mplayer-plugin installed for a wide
  variety of MIME-types, but trying to access online videos no longer
  starts mplayer-plugin as it did before the upgrade.
 
  My meta-question remains: Is this documented, and if so, where?
 
  --
  Chris Hill   [EMAIL PROTECTED]
  ** [ Busy Expunging | ]

 The mailman search interface is screwed up, and the FreeBSD search
 engine and Google haven't indexed recent threads yet.  A look through
 December's archives would've turned these up.

 http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107922.h
tml
 http://lists.freebsd.org/pipermail/freebsd-questions/2005-December/107098.h
tml


For acroread make sure you rename /usr/local/bin/acroread7 
to /usr/local/bin/acroread.

Beech

-- 

---
Beech Rintoul - System Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | NorthWind Communications
\ / - NO HTML/RTF in e-mail  | 201 East 9th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - Please visit Alaska Paradise - http://akparadise.byethost33.com
---













pgp0ta4Ohw2HF.pgp
Description: PGP signature


Re: Mozilla plugins broken after port upgrade

2005-12-29 Thread Micah

Chris Hill wrote:
Yesterday I cvsup'ed and upgraded my ports, using the procedure I've 
been using for quite some time. After it was done, most of my Mozilla 
plug-ins no longer work. I did not upgrade my operating system at that 
time, since I'm already at the latest patchlevel.


The specific issues are with acroread7, flash and mplayer-plugin. All of 
these worked as plug-ins before the upgrade, but now none of them do. 
Acroread7 and mplayer work fine in their standalone application 
incarnations, but not as plug-ins. Curiously, the java plug-in still 
works fine. In Mozilla, about:plugins shows java and the mplayer stuff, 
but not anything pertaining to Acrobat or PDFs.


Here is what I've done to try to fix this:

tripel# mv /etc/libmap.conf /etc/libmap.conf.old
tripel# cp 
/usr/local/share/examples/linuxpluginwrapper/libmap.conf-FreeBSD5-stable 
/etc/libmap.conf


/etc/libmap.conf - both the new and old versions - have an entry like
# Acrobat7 with Mozilla/Firebird/Galeon/Epiphany/Konqueror/Kazehakase
[/usr/compat/linux/usr/local/Adobe/Acrobat7.0/Browser/intellinux/nppdf.so]
libc.so.6   pluginwrapper/acrobat.so

libc.so.6 exists; it's a symlink to libc-2.3.2.so, both in 
/usr/compat/linux/lib. However, the path shown in [square brackets] does 
not exist. Does it need to? man libc.conf doesn't say anything about 
those square bracket entries. On the off chance, I tried creating that 
heirarchy of directories and touch'ing nppdf.so, but no love so I got 
rid of it.


  $ ls /usr/local/lib/pluginwrapper
  acrobat.so   flash7.so   java3d.so   oci8.so   realplayer.so
  flash6.sojai.so  java3d_snd.so   pips.so

A search of the list archive turned up a post saying that you have to 
have linprocfs mounted *before* doing the *install* on 
linuxpluginwrapper. I made that happen; relevant df output is

  Filesystem  1K-blocks  Used  Avail Capacity  Mounted on
  linprocfs   4 4  0   100%/usr/compat/linux/proc

I then deinstalled the following via 'make deinstall', then did 'make 
reinstall' in this order:

  print/acroread7
  www/mozilla
  www/linuxpluginwrapper
  www/linux-flashplugin
  www/mplayer-plugin

Question: Can someone point me to a writeup of what I need to do, in 
what order, to repair this?


Thanks very much.

$ uname -a
FreeBSD tripel.monochrome.org 5.4-RELEASE-p8 FreeBSD 5.4-RELEASE-p8 #0: 
Thu Oct 13 22:12:04 EDT 2005 
[EMAIL PROTECTED]:/usr/obj/usr/src/sys/TRIPEL i386


 --
Chris Hill   [EMAIL PROTECTED]
** [ Busy Expunging | ]


Search the list archives for Flash Plugin in 6.0 and Flash no longer 
displayed in Firefox.  It's an issue with the linuxpluginwrapper port, 
several methods to make it work are described in those recent threads.


HTH,
Micah
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]