Re: FreeBSD Port: linuxpluginwrapper-20051113_8
On Sun, 2008-09-14 at 08:53 +0200, Tobias Roth wrote: > On 09/13/08 16:56, Frank Jahnke wrote: > > On Sat, 2008-09-13 at 23:51 +0900, Norikatsu Shigemura wrote: > >> On Sat, 13 Sep 2008 11:23:37 +1000 > >> Peter Jeremy <[EMAIL PROTECTED]> wrote: > > > >>Recentry, wine is good solution for using Flash. > > > > I use this too. > > So you use wine + windows_firefox + windows_flash on FreeBSD with no > problems? Right -- it works pretty well. Not perfectly or as well as it does on Windows, but pretty well. It does help a lot. If you are still in 6.x, don't forget the OS patch. Frank ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD Port: linuxpluginwrapper-20051113_8
On 09/13/08 16:56, Frank Jahnke wrote: > On Sat, 2008-09-13 at 23:51 +0900, Norikatsu Shigemura wrote: >> On Sat, 13 Sep 2008 11:23:37 +1000 >> Peter Jeremy <[EMAIL PROTECTED]> wrote: > >> Recentry, wine is good solution for using Flash. > > I use this too. So you use wine + windows_firefox + windows_flash on FreeBSD with no problems? That'd be just the solution I'm looking for, as I neither need nor want permanent flash support, I need it only for the very occasional site that I can't look at without flash. Thanks for clarification, Tobias -- Tobias Roth || http://fsck.ch || PGP: 0xCE599B4D | To make honey, young bee need young flower. Not old prune. | - Mister Kesuke Miyagi ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Possibly unbuildable ports reminder
Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://pointyhat.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/[EMAIL PROTECTED] Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Balance - Port
On Fri, Sep 12, 2008 at 5:03 PM, Jeremy Chadwick <[EMAIL PROTECTED]> wrote: > On Fri, Sep 12, 2008 at 04:00:06PM +0300, Okalany Daniel wrote: > > Im on freebsd current with ports current. > > FreeBSD down.one2net.co.ug 8.0-CURRENT FreeBSD 8.0-CURRENT #7: Wed Sep > 10 > > 19:31:10 EAT 2008 [EMAIL PROTECTED]: > /usr/obj/usr/src/sys/IPFWKERNEL > > i386 > > > > [EMAIL PROTECTED] /usr/home/oka]# /usr/local/etc/rc.d/balance start > > setsockopt(IPV6_V6ONLY=0): Invalid argument > > > > Is this a problem with balancer or my options? > > It appears you've removed IPv6 support from your kernel, which is fine. > > The bug in with the IPv6 detection method used by balancer. The logic > in balancer is "if IPV6_V6ONLY is defined, call setsockopt() with > IPV6_V6ONLY". The definition is pulled in from one of many #include > files in /usr/include. > > balancer assumes that if IPV6_V6ONLY is defined, that it should make > the setsockopt() call. This won't work for systems with IPv6 removed > from the kernel -- because the system #include files still define > IPV6_V6ONLY as an available bit. > > Can you apply the following hackfix against ports/net/balancer/Makefile > and tell me if it works for you? Please note you'll need to build the > port either with "make WITHOUT_IPV6=true" or place WITHOUT_IPV6=true > in /etc/make.conf. > > --- Makefile.orig 2008-07-09 00:15:46.0 -0700 > +++ Makefile2008-09-12 07:00:44.0 -0700 > @@ -20,6 +20,10 @@ > > MAN1= balance.1 > > +.if defined(WITHOUT_IPV6) > +CFLAGS+= -UIPV6_V6ONLY > +.endif > + > pre-build: >@${REINPLACE_CMD} -e 's|^CFLAGS|CFLAGS?|' \ >-e 's|^CC|CC?|' ${WRKSRC}/Makefile > > -- > | Jeremy Chadwickjdc at parodius.com | > | Parodius Networking http://www.parodius.com/ | > | UNIX Systems Administrator Mountain View, CA, USA | > | Making life hard for others since 1977. PGP: 4BD6C0CB | > > Thanks for the quick response, but that hasnt solved the issue, it stays the same. -- OKALANY DANIEL P.O BOX 26150 KAMPALA. http://okaman.one2net.co.ug -- Youth is a wonderful thing. What a crime to waste it on children. The Word was spoken before it was written, and it was written so it could be spoken! Words can move mountais because mountains are created by words! ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Balance - Port
On Sun, Sep 14, 2008 at 06:12:08PM +0300, Okalany Daniel wrote: > On Fri, Sep 12, 2008 at 5:03 PM, Jeremy Chadwick <[EMAIL PROTECTED]> wrote: > > > On Fri, Sep 12, 2008 at 04:00:06PM +0300, Okalany Daniel wrote: > > > Im on freebsd current with ports current. > > > FreeBSD down.one2net.co.ug 8.0-CURRENT FreeBSD 8.0-CURRENT #7: Wed Sep > > 10 > > > 19:31:10 EAT 2008 [EMAIL PROTECTED]: > > /usr/obj/usr/src/sys/IPFWKERNEL > > > i386 > > > > > > [EMAIL PROTECTED] /usr/home/oka]# /usr/local/etc/rc.d/balance start > > > setsockopt(IPV6_V6ONLY=0): Invalid argument > > > > > > Is this a problem with balancer or my options? > > > > It appears you've removed IPv6 support from your kernel, which is fine. > > > > The bug in with the IPv6 detection method used by balancer. The logic > > in balancer is "if IPV6_V6ONLY is defined, call setsockopt() with > > IPV6_V6ONLY". The definition is pulled in from one of many #include > > files in /usr/include. > > > > balancer assumes that if IPV6_V6ONLY is defined, that it should make > > the setsockopt() call. This won't work for systems with IPv6 removed > > from the kernel -- because the system #include files still define > > IPV6_V6ONLY as an available bit. > > > > Can you apply the following hackfix against ports/net/balancer/Makefile > > and tell me if it works for you? Please note you'll need to build the > > port either with "make WITHOUT_IPV6=true" or place WITHOUT_IPV6=true > > in /etc/make.conf. > > > > --- Makefile.orig 2008-07-09 00:15:46.0 -0700 > > +++ Makefile2008-09-12 07:00:44.0 -0700 > > @@ -20,6 +20,10 @@ > > > > MAN1= balance.1 > > > > +.if defined(WITHOUT_IPV6) > > +CFLAGS+= -UIPV6_V6ONLY > > +.endif > > + > > pre-build: > >@${REINPLACE_CMD} -e 's|^CFLAGS|CFLAGS?|' \ > >-e 's|^CC|CC?|' ${WRKSRC}/Makefile > > > > Thanks for the quick response, but that hasnt solved the issue, it stays the > same. Interesting, since that resolved said problem on my IPv4-only machine, but that's a RELENG_7 box. I wonder how the -U is getting overridden. -- | Jeremy Chadwickjdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: mod_python core dump
Jeremy Chadwick escribió: On Fri, Sep 12, 2008 at 11:39:35AM +0200, Matias Surdi wrote: I've installed mod_python from the ports on a recently installed FreeBSD 7 box and, despite all the build process goes well, when I try to start apache I get a core dump. If I disable the "Loadmodule" directive for mod_python in httpd.conf, then apache starts perfectly. The versions I'm using are: # pkg_version -v apache-2.0.63_2 = up-to-date with port autoconf-2.62 = up-to-date with port autoconf-wrapper-20071109 = up-to-date with port bash-3.2.39_1 = up-to-date with port dovecot-1.1.3 = up-to-date with port expat-2.0.1 = up-to-date with port gettext-0.17_1 = up-to-date with port gmake-3.81_3= up-to-date with port help2man-1.36.4_2 = up-to-date with port libiconv-1.11_1 = up-to-date with port libtool-1.5.26 = up-to-date with port linux_base-fc-4_10 < needs updating (port has 4_13) m4-1.4.11,1 = up-to-date with port mod_python-3.3.1_2 = up-to-date with port p5-gettext-1.05_2 = up-to-date with port pcre-7.7_1 = up-to-date with port perl-5.8.8_1= up-to-date with port pkg-config-0.23_1 = up-to-date with port postfix-2.5.4,1 = up-to-date with port py25-sqlite3-2.5.2_1= up-to-date with port python25-2.5.2_3= up-to-date with port sqlite3-3.5.6 = up-to-date with port Any help will be appreciated, thanks. You'll need to provide a gdb backtrace to determine the cause of the core, and provide any error messages shown in Apache's error log (default: /var/log/httpd-error.log). The above information doesn't provide enough detail. Please also be aware that, quite often, debugging Apache and Apache modules is a tedious and difficult task. It's rarely a simple thing. I've noticed that compiling python without threads support fixes the problem, but that's not a solution for me as I need threads. Any other ideas? ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: mod_python core dump
On Sun, Sep 14, 2008 at 05:45:59PM +0200, Matias Surdi wrote: > Jeremy Chadwick escribió: >> On Fri, Sep 12, 2008 at 11:39:35AM +0200, Matias Surdi wrote: >>> I've installed mod_python from the ports on a recently installed >>> FreeBSD 7 box and, despite all the build process goes well, when I >>> try to start apache I get a core dump. If I disable the "Loadmodule" >>> directive for mod_python in httpd.conf, then apache starts >>> perfectly. >>> >>> The versions I'm using are: >>> >>> # pkg_version -v >>> apache-2.0.63_2 = up-to-date with port >>> autoconf-2.62 = up-to-date with port >>> autoconf-wrapper-20071109 = up-to-date with port >>> bash-3.2.39_1 = up-to-date with port >>> dovecot-1.1.3 = up-to-date with port >>> expat-2.0.1 = up-to-date with port >>> gettext-0.17_1 = up-to-date with port >>> gmake-3.81_3= up-to-date with port >>> help2man-1.36.4_2 = up-to-date with port >>> libiconv-1.11_1 = up-to-date with port >>> libtool-1.5.26 = up-to-date with port >>> linux_base-fc-4_10 < needs updating (port has 4_13) >>> m4-1.4.11,1 = up-to-date with port >>> mod_python-3.3.1_2 = up-to-date with port >>> p5-gettext-1.05_2 = up-to-date with port >>> pcre-7.7_1 = up-to-date with port >>> perl-5.8.8_1= up-to-date with port >>> pkg-config-0.23_1 = up-to-date with port >>> postfix-2.5.4,1 = up-to-date with port >>> py25-sqlite3-2.5.2_1= up-to-date with port >>> python25-2.5.2_3= up-to-date with port >>> sqlite3-3.5.6 = up-to-date with port >>> >>> Any help will be appreciated, thanks. >> >> You'll need to provide a gdb backtrace to determine the cause of the >> core, and provide any error messages shown in Apache's error log >> (default: /var/log/httpd-error.log). The above information doesn't >> provide enough detail. >> >> Please also be aware that, quite often, debugging Apache and Apache >> modules is a tedious and difficult task. It's rarely a simple thing. >> > > I've noticed that compiling python without threads support fixes the > problem, but that's not a solution for me as I need threads. Any other > ideas? Doesn't surprise me. I'd recommend first reporting your problem upstream to the mod_python authors, as this does not appear to be a FreeBSD or FreeBSD ports issue. As for solution, the solution here is to not use mod_python. Surely something like cgiwrap or FastCGI could be made to work with python. -- | Jeremy Chadwickjdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: vim-7.2 Checksum failure
David Southwell <[EMAIL PROTECTED]> writes: > Vim light problem.. > > => Attempting to fetch from http://vim.fyxm.net/pub/vim/unix/. > fetch: http://vim.fyxm.net/pub/vim/unix/vim-7.2.tar.bz2: Not Found > => Attempting to fetch from http://zloba.ath.cx/pub/vim/unix/. > fetch: http://zloba.ath.cx/pub/vim/unix/vim-7.2.tar.bz2: Moved Permanently > => Attempting to fetch from > http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/. > fetch: http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: > Requested Range Not Satisfiable > => Attempting to fetch from http://vim.mirror.fr/unix/. > fetch: http://vim.mirror.fr/unix/vim-7.2.tar.bz2: Operation timed out > => Attempting to fetch from ftp://ftp.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp2.us.vim.org/pub/vim/unix/. > fetch: ftp://ftp2.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Operation timed out > => Attempting to fetch from ftp://ftp9.us.vim.org/pub/vim/unix/. > fetch: ftp://ftp9.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action > aborted: local error in processing > => Attempting to fetch from ftp://ftp.ca.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.nl.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.de.vim.org/unix/. > fetch: ftp://ftp.de.vim.org/unix/vim-7.2.tar.bz2: Unknown FTP error > => Attempting to fetch from ftp://ftp3.de.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.uk.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.ie.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.at.vim.org/pub/vim/unix/. > fetch: ftp://ftp.at.vim.org/pub/vim/unix/vim-7.2.tar.bz2: File unavailable > (e.g., file not found, no access) > => Attempting to fetch from ftp://ftp.pt.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.is.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.il.vim.org/pub/vim/unix/. > fetch: ftp://ftp.il.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown error: 0 > => Attempting to fetch from ftp://ftp.pl.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.ro.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.sk.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from ftp://ftp.tw.vim.org/pub/vim/unix/. > fetch: ftp://ftp.tw.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action > aborted: local error in processing > => Attempting to fetch from ftp://vim.stu.edu.tw/pub/vim/unix/. > fetch: ftp://vim.stu.edu.tw/pub/vim/unix/vim-7.2.tar.bz2: Requested action > aborted: local error in processing > => Attempting to fetch from ftp://ftp.jp.vim.org/pub/vim/unix/. > fetch: ftp://ftp.jp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown FTP error > => Attempting to fetch from ftp://ftp.kr.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from > ftp://ftp.mirrorservice.org/sites/ftp.vim.org/pub/vim/unix/. > fetch: vim-7.2.tar.bz2: local modification time does not match remote > => Attempting to fetch from > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/. > fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/vim-7.2.tar.bz2: > size mismatch: expected 7203291, actual 7203720 > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade.63681.13 > env UPGRADE_TOOL=portupgrade UPGRADE_PORT=vim-lite-7.2.9 > UPGRADE_PORT_VER=7.2.9 make > ** Fix the problem and try again. rm /usr/ports/distfiles/vim/vim-7.2.tar.bz2 solved the problem for me. - Herbert ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: vim-7.2 Checksum failure
On Sunday 14 September 2008 12:35:43 Herbert J. Skuhra wrote: > David Southwell <[EMAIL PROTECTED]> writes: > > Vim light problem.. > > > > => Attempting to fetch from http://vim.fyxm.net/pub/vim/unix/. > > fetch: http://vim.fyxm.net/pub/vim/unix/vim-7.2.tar.bz2: Not Found > > => Attempting to fetch from http://zloba.ath.cx/pub/vim/unix/. > > fetch: http://zloba.ath.cx/pub/vim/unix/vim-7.2.tar.bz2: Moved > > Permanently => Attempting to fetch from > > http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/. > > fetch: > > http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: > > Requested Range Not Satisfiable > > => Attempting to fetch from http://vim.mirror.fr/unix/. > > fetch: http://vim.mirror.fr/unix/vim-7.2.tar.bz2: Operation timed out > > => Attempting to fetch from ftp://ftp.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp2.us.vim.org/pub/vim/unix/. > > fetch: ftp://ftp2.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Operation > > timed out => Attempting to fetch from > > ftp://ftp9.us.vim.org/pub/vim/unix/. fetch: > > ftp://ftp9.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action > > aborted: local error in processing > > => Attempting to fetch from ftp://ftp.ca.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.nl.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.de.vim.org/unix/. > > fetch: ftp://ftp.de.vim.org/unix/vim-7.2.tar.bz2: Unknown FTP error > > => Attempting to fetch from ftp://ftp3.de.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.uk.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.ie.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.at.vim.org/pub/vim/unix/. > > fetch: ftp://ftp.at.vim.org/pub/vim/unix/vim-7.2.tar.bz2: File > > unavailable (e.g., file not found, no access) > > => Attempting to fetch from ftp://ftp.pt.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.is.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.il.vim.org/pub/vim/unix/. > > fetch: ftp://ftp.il.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown error: > > 0 => Attempting to fetch from ftp://ftp.pl.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.ro.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.sk.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from ftp://ftp.tw.vim.org/pub/vim/unix/. > > fetch: ftp://ftp.tw.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested > > action aborted: local error in processing > > => Attempting to fetch from ftp://vim.stu.edu.tw/pub/vim/unix/. > > fetch: ftp://vim.stu.edu.tw/pub/vim/unix/vim-7.2.tar.bz2: Requested > > action aborted: local error in processing > > => Attempting to fetch from ftp://ftp.jp.vim.org/pub/vim/unix/. > > fetch: ftp://ftp.jp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown FTP > > error => Attempting to fetch from ftp://ftp.kr.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from > > ftp://ftp.mirrorservice.org/sites/ftp.vim.org/pub/vim/unix/. > > fetch: vim-7.2.tar.bz2: local modification time does not match remote > > => Attempting to fetch from > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/. > > fetch: > > ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/vim-7.2.tar.bz2: > > size mismatch: expected 7203291, actual 7203720 > > ** Command failed [exit code 1]: /usr/bin/script -qa > > /tmp/portupgrade.63681.13 env UPGRADE_TOOL=portupgrade > > UPGRADE_PORT=vim-lite-7.2.9 > > UPGRADE_PORT_VER=7.2.9 make > > ** Fix the problem and try again. > > rm /usr/ports/distfiles/vim/vim-7.2.tar.bz2 > > solved the problem for me OK - I tried that - probably too early on.. so I'll try again Thanks .. david ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD Port: linuxpluginwrapper-20051113_8
On Sun, Sep 14, 2008 at 4:19 AM, Frank Jahnke <[EMAIL PROTECTED]> wrote: > On Sun, 2008-09-14 at 08:53 +0200, Tobias Roth wrote: >> On 09/13/08 16:56, Frank Jahnke wrote: >> > On Sat, 2008-09-13 at 23:51 +0900, Norikatsu Shigemura wrote: >> >> On Sat, 13 Sep 2008 11:23:37 +1000 >> >> Peter Jeremy <[EMAIL PROTECTED]> wrote: >> > >> >>Recentry, wine is good solution for using Flash. >> > >> > I use this too. >> >> So you use wine + windows_firefox + windows_flash on FreeBSD with no >> problems? > > Right -- it works pretty well. Not perfectly or as well as it does on > Windows, but pretty well. It does help a lot. If you are still in 6.x, > don't forget the OS patch. Did you guys try swfdec-plugin? If a flash solution that works pretty well, though not perfectly, then it may provide what you need. BTW, I strongly believe that we, FreeBSD users, would be doing ourselves a big favour by using -- and helping to improve -- open source software that run natively on FreeBSD. Foreign options may work here and there but using them will ever be playing catch-up with Linux and Windows. -- cd /usr/ports/sysutils/life make clean ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: FreeBSD Port: linuxpluginwrapper-20051113_8
Carlos A. M. dos Santos writes: > BTW, I strongly believe that we, FreeBSD users, would be doing > ourselves a big favour by using -- and helping to improve -- open > source software that run natively on FreeBSD. Foreign options may > work here and there but using them will ever be playing catch-up > with Linux and Windows. Unfortunately, there is a quite a bit of stuff which - while I hesitate to say "will never" - is exponentially unlikely to ever have a native counterpart. Using the Linux version, and improving the emulation layer so more things run (correctly and fast), is an acceptable second best. Robert Huff ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: vim-7.2 Checksum failure
Herbert J. Skuhra wrote: David Southwell <[EMAIL PROTECTED]> writes: Vim light problem.. => Attempting to fetch from http://vim.fyxm.net/pub/vim/unix/. fetch: http://vim.fyxm.net/pub/vim/unix/vim-7.2.tar.bz2: Not Found => Attempting to fetch from http://zloba.ath.cx/pub/vim/unix/. fetch: http://zloba.ath.cx/pub/vim/unix/vim-7.2.tar.bz2: Moved Permanently => Attempting to fetch from http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/. fetch: http://ftp2.uk.vim.org/sites/ftp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested Range Not Satisfiable => Attempting to fetch from http://vim.mirror.fr/unix/. fetch: http://vim.mirror.fr/unix/vim-7.2.tar.bz2: Operation timed out => Attempting to fetch from ftp://ftp.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp2.us.vim.org/pub/vim/unix/. fetch: ftp://ftp2.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Operation timed out => Attempting to fetch from ftp://ftp9.us.vim.org/pub/vim/unix/. fetch: ftp://ftp9.us.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action aborted: local error in processing => Attempting to fetch from ftp://ftp.ca.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.nl.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.de.vim.org/unix/. fetch: ftp://ftp.de.vim.org/unix/vim-7.2.tar.bz2: Unknown FTP error => Attempting to fetch from ftp://ftp3.de.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.uk.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.ie.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.at.vim.org/pub/vim/unix/. fetch: ftp://ftp.at.vim.org/pub/vim/unix/vim-7.2.tar.bz2: File unavailable (e.g., file not found, no access) => Attempting to fetch from ftp://ftp.pt.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.is.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.il.vim.org/pub/vim/unix/. fetch: ftp://ftp.il.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown error: 0 => Attempting to fetch from ftp://ftp.pl.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.ro.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.sk.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.tw.vim.org/pub/vim/unix/. fetch: ftp://ftp.tw.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Requested action aborted: local error in processing => Attempting to fetch from ftp://vim.stu.edu.tw/pub/vim/unix/. fetch: ftp://vim.stu.edu.tw/pub/vim/unix/vim-7.2.tar.bz2: Requested action aborted: local error in processing => Attempting to fetch from ftp://ftp.jp.vim.org/pub/vim/unix/. fetch: ftp://ftp.jp.vim.org/pub/vim/unix/vim-7.2.tar.bz2: Unknown FTP error => Attempting to fetch from ftp://ftp.kr.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.mirrorservice.org/sites/ftp.vim.org/pub/vim/unix/. fetch: vim-7.2.tar.bz2: local modification time does not match remote => Attempting to fetch from ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/vim/vim-7.2.tar.bz2: size mismatch: expected 7203291, actual 7203720 ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.63681.13 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=vim-lite-7.2.9 UPGRADE_PORT_VER=7.2.9 make ** Fix the problem and try again. rm /usr/ports/distfiles/vim/vim-7.2.tar.bz2 solved the problem for me. - Herbert I had the same problem and did download vim-7.2.tar.bz2 manually, moved it to distfiles and everything was well... Philipp ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "[EMAIL PROTECTED]"