Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
Mozilla 1.5, Firebird 0.7, Thunderbird 0.3 are out !
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

Goto page Previous  1, 2, 3, 4  
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
xlyz
Veteran
Veteran


Joined: 27 Oct 2002
Posts: 1470
Location: Italy

PostPosted: Thu Oct 16, 2003 9:33 pm    Post subject: Reply with quote

xlyz wrote:
btw, I'm going to build a binary package for those with slow cpu:
CFLAGS="-mcpu=i686 -O2"
USE="+java -gtk2 -ipv6 -gnome -moznoxft"

firebird binary available on ftp://130.89.169.72/
(courtesy of Solatis)

enjoy
Back to top
View user's profile Send private message
tdb
Apprentice
Apprentice


Joined: 19 Sep 2002
Posts: 293
Location: New Orleans, Louisiana, U.S.A. (what's left of it anyway...)

PostPosted: Thu Oct 16, 2003 11:31 pm    Post subject: Reply with quote

How is everyone else doing with extensions? My copy of firebird 0.7 gets really flaky after loading extensions. Right now, my browser refuses to close by any other way but "file > quit." Anybody else facing this? The main reason I switched to this browser is because of the extensions.
Back to top
View user's profile Send private message
robmoss
Retired Dev
Retired Dev


Joined: 27 May 2003
Posts: 2634
Location: Jesus College, Oxford

PostPosted: Fri Oct 17, 2003 2:11 am    Post subject: Reply with quote

Working Thunderbird 0.3 ebuild

A lot of Thunderbird 0.3 ebuilds (I've seen three different ones) are making a few mistakes. For those who don't want to read on, here's the link to the (only one as far as I know that is) working 0.3 ebuild:

https://bugs.gentoo.org/attachment.cgi?id=19340

To get this working, first save this to /usr/local/portage/net-mail/mozilla-thunderbird/mozilla-thunderbird-0.3.ebuild

Then:

Code:
cd /usr/local/portage/net-mail/mozilla-thunderbird
cp -R /usr/portage/net-mail/mozilla-thunderbird/* .
ebuild mozilla-thunderbird-0.3.ebuild digest
emerge -p mozilla-thunderbird


You should see mozilla-thunderbird 0.3 ready and waiting to be emerged. If not, check which step(s) you've missed :P

Okay - now, Thunderbird will not compile if you use -msse, -msse2, -fomit-frame-pointer and also a couple of other flags; some of these are to do with enigmail, others are to do with IPC and another couple still are related to Thunderbird itself. So, the ebuild there will strip-flags, leaving you with:

"-Ox -march=xxxxx -pipe"

where -Ox is -Os, -O, -O1, -O2 or -O3 and xxxxx is your architecture (remove, or replace with -mcpu, if necessary).

This creates a working Mozilla Thunderbird 0.3 installation with or without Enigmail support, depending on USE flags.

Any problems with this, let me know!
_________________
Reality is for those who can't face Science Fiction.

emerge -U will kill your Gentoo
ecatmur, Lord of Portage Bash Scripts
Back to top
View user's profile Send private message
quiconque
Apprentice
Apprentice


Joined: 01 Nov 2002
Posts: 203
Location: Norrköping, Sweden

PostPosted: Fri Oct 17, 2003 3:40 am    Post subject: Reply with quote

I've built a binary of Mozilla 1.5 with the following flags :

Quote:

CFLAGS = ""-O3 -march=pentium3 -fprefetch-loop-arrays -funroll-loops -pipe"

USE = "+java +crypt -ipv6 +gtk2 +ssl -ldap -gnome -debug -mozsvg -mozcalendar -mozaccess -mozp3p -mozxmlterm +moznoirc -moznomail -moznocompose -moznoxft"


Anyone interested in hosting it?
Back to top
View user's profile Send private message
godot
n00b
n00b


Joined: 01 Oct 2003
Posts: 4

PostPosted: Fri Oct 17, 2003 3:50 am    Post subject: Reply with quote

robmoss2k wrote:

To get this working, first save this to /usr/local/portage/net-mail/mozilla-thunderbird/mozilla-thunderbird-0.3.ebuild

Then:

Code:
cd /usr/local/portage/net-mail/mozilla-thunderbird
cp -R /usr/portage/net-mail/mozilla-thunderbird/* .
ebuild mozilla-thunderbird-0.3.ebuild digest
emerge -p mozilla-thunderbird


You should see mozilla-thunderbird 0.3 ready and waiting to be emerged. If not, check which step(s) you've missed.

Any problems with this, let me know!


If you've never used a local ebuild before, make sure that you uncomment the line

Code:
PORTDIR_OVERLAY=/usr/local/portage


in /etc/make.conf, first.

Also, this ebuild is masked (which seems appropriate). That means that emerge -p mozilla-thunderbird will tell you this unless you (1) have ACCEPT_KEYWORDS="~86" set or (2) emerge the ebuild itself, directly:

Code:
emerge -p /usr/local/portage/net-mail/mozilla-thunderbird/mozilla-thunderbird-0.3.ebuild
emerge /usr/local/portage/net-mail/mozilla-thunderbird/mozilla-thunderbird-0.3.ebuild


Other than that, I've had no problems with these directions (compiling now). Thanks, robmoss2k.
Back to top
View user's profile Send private message
JjcampNR
Tux's lil' helper
Tux's lil' helper


Joined: 02 Mar 2003
Posts: 127
Location: Massachusetts, USA

PostPosted: Fri Oct 17, 2003 5:02 am    Post subject: Reply with quote

anfpunk--
Quote:
Everytime i build Firebird instead of using mozilla-firebird-bin I get gigantic ugly fonts. How can I make them look like the fonts in mozilla-firebird-bin?



Sorry for the delayed response (better late than never I guess). What I would suggest is adding the use flag: truetype (USE="truetype") this enables support for truetype/freetype2 fonts. Give this a shot and let me know how it works out.

Good Luck,
Josh
_________________
Damn the man, fight the power!

http://www.torquenetworks.com
Back to top
View user's profile Send private message
robmoss
Retired Dev
Retired Dev


Joined: 27 May 2003
Posts: 2634
Location: Jesus College, Oxford

PostPosted: Fri Oct 17, 2003 1:08 pm    Post subject: Reply with quote

Thanks for the additional comments, godot! I tend to put the instructions up with every ebuild I submit so as to avoid the 20 similar "it doesn't work, what do I do" posts by people who've never tried this before.

Mozilla Thunderbird 0.3
_________________
Reality is for those who can't face Science Fiction.

emerge -U will kill your Gentoo
ecatmur, Lord of Portage Bash Scripts
Back to top
View user's profile Send private message
anfpunk
Apprentice
Apprentice


Joined: 29 May 2003
Posts: 275
Location: Columbus, Oh

PostPosted: Fri Oct 17, 2003 5:30 pm    Post subject: Reply with quote

JjcampNR wrote:
anfpunk--
Quote:
Everytime i build Firebird instead of using mozilla-firebird-bin I get gigantic ugly fonts. How can I make them look like the fonts in mozilla-firebird-bin?



Sorry for the delayed response (better late than never I guess). What I would suggest is adding the use flag: truetype (USE="truetype") this enables support for truetype/freetype2 fonts. Give this a shot and let me know how it works out.

Good Luck,
Josh


I have truetype set in make.conf. I tried USE="truetype" emerge mozilla-firebird and it still has these ugly large fonts. Thanks for the suggestion though.

Here's what it looks like just in case that might help:

www.anfpunk.net/i/comp/ugly-firebird.jpg
www.anfpunk.net/i/comp/notugly-firebird.jpg

Also in 0.7 my mouse cursor changes from blueglass to some ugly mouse cursor but only in the Firebird window. Once I leave it it will be normal again.
Back to top
View user's profile Send private message
Chaos
Tux's lil' helper
Tux's lil' helper


Joined: 22 Sep 2002
Posts: 103
Location: NJ

PostPosted: Fri Oct 17, 2003 6:54 pm    Post subject: Reply with quote

anfpunk:

I see by the screen shots that when you say 'ugly fonts' you mean that it's using the GTK1 toolkit. Either set USE=gtk2 in make.conf or do
Code:
USE="gtk2" emerge mozilla-firebird

Hope this helps! :D

Edit:
No wait! You have USE=gtk2 set, but you like gtk1 over it. I would suggest using GTK2 over 1, and just change your font preferences in Gnome (Applications -> Desktop Preferences -> Font). If you really want gtk1, then either REMOVE USE=gtk2 in your use flags or do:
Code:
USE="-gtk2" emerge mozilla-firebird
Back to top
View user's profile Send private message
anfpunk
Apprentice
Apprentice


Joined: 29 May 2003
Posts: 275
Location: Columbus, Oh

PostPosted: Fri Oct 17, 2003 8:24 pm    Post subject: Reply with quote

Chaos wrote:
anfpunk:

I see by the screen shots that when you say 'ugly fonts' you mean that it's using the GTK1 toolkit. Either set USE=gtk2 in make.conf or do
Code:
USE="gtk2" emerge mozilla-firebird

Hope this helps! :D

Edit:
No wait! You have USE=gtk2 set, but you like gtk1 over it. I would suggest using GTK2 over 1, and just change your font preferences in Gnome (Applications -> Desktop Preferences -> Font). If you really want gtk1, then either REMOVE USE=gtk2 in your use flags or do:
Code:
USE="-gtk2" emerge mozilla-firebird


It is set for -gtk. The - is on the line in front of it. Took me a second to see it too. This is what it's getting built as:

[ebuild N ] net-www/mozilla-firebird-0.7 +java +gtk2 -ipv6 -gnome -moznoxft
Back to top
View user's profile Send private message
Chaos
Tux's lil' helper
Tux's lil' helper


Joined: 22 Sep 2002
Posts: 103
Location: NJ

PostPosted: Fri Oct 17, 2003 8:39 pm    Post subject: Reply with quote

yeah but you need -gtk2
-gtk won't do anything with mozilla-firebird. If you want it to build with GTK1 (or notugly fonts as you put it) then do:
Code:
USE=-gtk2 emerge mozilla-firebird
Back to top
View user's profile Send private message
jtp755
l33t
l33t


Joined: 01 Sep 2003
Posts: 691
Location: USA

PostPosted: Fri Oct 17, 2003 9:19 pm    Post subject: Reply with quote

ok so i have downloaded the Firebird 0.7 ebuild that was posted on the first page of this thread. everytime i try to emerge it it wants to do 0.6.1? how do i get it to emerge 0.7? Its on a new install with flux.
Back to top
View user's profile Send private message
ozonator
Guru
Guru


Joined: 11 Jun 2003
Posts: 591
Location: Ontario, Canada

PostPosted: Fri Oct 17, 2003 9:43 pm    Post subject: Reply with quote

Those who have tried the new Mozilla or Firebird: any of you having any problems with disappearing bookmarks?

There are now several bug reports describing this exact behaviour -- quitting Mozilla leads to deletion of bookmarks.html. Most reports concern the OS X version of Mozilla (including a recent Camino), but there's at least one report of this with a Linux version and Firebird. I've seen it myself on OS X with Mozilla -- quitting the program makes bookmarks.html disappear altogether.

You may want to make sure your backup of bookmarks.html is up to date, just in case....
Back to top
View user's profile Send private message
fizz
Guru
Guru


Joined: 31 Aug 2003
Posts: 309
Location: Florida

PostPosted: Fri Oct 17, 2003 9:46 pm    Post subject: Reply with quote

No, but i have noticed that java runs like crap now, i even tried unmerging blackdown, and re-merging, i also tried using sun's sdk of 1.4.2 and it sluggish and buttons on dialog boxes disappear.
_________________
Athlon 64 3200, MSI NEO NForce 3, 1Gig PC3700, EVGA Geforce 6800 GT
Back to top
View user's profile Send private message
jtp755
l33t
l33t


Joined: 01 Sep 2003
Posts: 691
Location: USA

PostPosted: Fri Oct 17, 2003 10:10 pm    Post subject: Reply with quote

i just did emerge sync and ACCEPT_KEYWORDS="~x86" emerge -pu mozilla-firebird and 0.7 shows up now :D
Back to top
View user's profile Send private message
didl
Retired Dev
Retired Dev


Joined: 09 Sep 2003
Posts: 1106
Location: Pittsburgh, PA

PostPosted: Fri Oct 17, 2003 10:42 pm    Post subject: Reply with quote

Same for thunderbird :lol:
Back to top
View user's profile Send private message
jtp755
l33t
l33t


Joined: 01 Sep 2003
Posts: 691
Location: USA

PostPosted: Sat Oct 18, 2003 12:28 am    Post subject: Reply with quote

did anyone expirenece any beeping during the firebird compile? it has started beeping all of a sudden and its random. i think it maybe gmake or something along those lines. i justhope that my cmopile isnt screwed up :?

[edit] I found a fix/explanation to the beep beep. check out:
Look under my computer beeps while compiling mozilla
and also https://forums.gentoo.org/viewtopic.php?t=51969&highlight=compiling+beeps
also https://forums.gentoo.org/viewtopic.php?t=59550&highlight=gmake
[/edit]
Back to top
View user's profile Send private message
viperlin
Veteran
Veteran


Joined: 15 Apr 2003
Posts: 1319
Location: UK

PostPosted: Sat Oct 18, 2003 12:03 pm    Post subject: Reply with quote

yeh it does it for me too, allways has
Back to top
View user's profile Send private message
Professor Frink
Tux's lil' helper
Tux's lil' helper


Joined: 03 Oct 2003
Posts: 128
Location: Bethlehem, PA

PostPosted: Sat Oct 18, 2003 3:16 pm    Post subject: Reply with quote

In file included from ../../../dist/include/string/nsAString.h:32,
from ../../../dist/include/unicharutil/nsUnicharUtils.h:42,
from nsJISx4501LineBreaker.cpp:51:
../../../dist/include/string/nsBufferHandle.h:286: internal error: Segmentation
fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:https://bugs.gentoo.org/> for instructions.
gmake[4]: *** [nsJISx4501LineBreaker.o] Error 1
gmake[4]: *** Waiting for unfinished jobs....
gmake[4]: Leaving directory `/var/tmp/portage/mozilla-firebird-0.7/work/mozilla/intl/lwbrk/src'
gmake[3]: *** [libs] Error 2
gmake[3]: Leaving directory `/var/tmp/portage/mozilla-firebird-0.7/work/mozilla/intl/lwbrk'
gmake[2]: *** [libs] Error 2
gmake[2]: Leaving directory `/var/tmp/portage/mozilla-firebird-0.7/work/mozilla/intl'
gmake[1]: *** [tier_9] Error 2
gmake[1]: Leaving directory `/var/tmp/portage/mozilla-firebird-0.7/work/mozilla'make: *** [default] Error 2

!!! ERROR: net-www/mozilla-firebird-0.7 failed.
!!! Function src_compile, Line 175, Exitcode 2
!!! (no error message)

what did i do wrong?
_________________
"You've got to listen to me. Elementary chaos theory tells us that all robots will eventually turn against their masters and run amok in an orgy of blood, and kicking and the biting with the metal teeth and the hurting and shoving."
Back to top
View user's profile Send private message
Yossarian
Tux's lil' helper
Tux's lil' helper


Joined: 15 Jul 2003
Posts: 117
Location: Austin, Tx.

PostPosted: Sat Oct 18, 2003 4:29 pm    Post subject: Reply with quote

When I do ACCEPT_KEYWORDS="~x86" emerge -pu mozilla-firebird it lists all of these as dependencies.
Code:
These are the packages that I would merge, in order:

Calculating dependencies ...done!
[ebuild     U ] sys-devel/libtool-1.4.3-r2 [1.4.3-r1]
[ebuild     U ] sys-libs/ncurses-5.3-r4 [5.3-r1]
[ebuild     U ] sys-devel/bison-1.875 [1.35]
[ebuild     U ] sys-apps/texinfo-4.6 [4.5]
[ebuild  N    ] sys-libs/db-4.1.25_p1-r2
[ebuild     U ] sys-devel/libperl-5.8.1 [5.8.0]
[ebuild     U ] dev-lang/perl-5.8.1-r2 [5.8.0-r12]
[ebuild     U ] sys-devel/binutils-2.14.90.0.6-r6 [2.14.90.0.6-r2]
[ebuild     U ] sys-devel/gcc-3.3.1-r5 [3.2.3-r2]
[ebuild     U ] sys-apps/shadow-4.0.3-r7 [4.0.3-r6]
[ebuild     U ] sys-apps/pam-login-3.12-r1 [3.11]
[ebuild     U ] sys-apps/util-linux-2.12 [2.11z-r6]
[ebuild     U ] sys-apps/baselayout-1.8.6.11 [1.8.6.10-r1]
[ebuild     U ] sys-libs/glibc-2.3.2-r6 [2.3.2-r1]
[ebuild     U ] dev-java/java-config-0.2.8-r2 [0.2.8]
[ebuild     U ] dev-python/python-fchksum-1.7.1 [1.6.1-r1]
[ebuild     U ] app-shells/bash-2.05b-r8 [2.05b-r7]
[ebuild     U ] sys-libs/readline-4.3-r5 [4.3-r4]
[ebuild     U ] dev-lang/python-2.2.3-r3 [2.2.3-r1]
[ebuild     U ] media-libs/lcms-1.11 [1.09]
[ebuild     U ] media-libs/libmng-1.0.5 [1.0.4]
[ebuild     U ] app-arch/zip-2.3-r2 [2.3-r1]
[ebuild     U ] net-www/mozilla-firebird-0.7 [0.6.1]

Does that mean that all of the dependencies are also unstable versions? As fare as I know the latest stable gcc in portage is 3.2.3-r2.
_________________
Peace
Yossarian
Back to top
View user's profile Send private message
viperlin
Veteran
Veteran


Joined: 15 Apr 2003
Posts: 1319
Location: UK

PostPosted: Sat Oct 18, 2003 5:32 pm    Post subject: Reply with quote

the -u means upgrade and it will list all upgrades (which i sugest you do anyway)

use "emerge /usr/portage/net-www/mozilla-firebird/mozilla-firebird-0.7.ebuild -p"

or the accept keywords wil also work ,remove the -u


i sugest you upgrade everything else too
Back to top
View user's profile Send private message
Koon
Retired Dev
Retired Dev


Joined: 10 Dec 2002
Posts: 518

PostPosted: Mon Oct 20, 2003 8:03 am    Post subject: Reply with quote

I tested the ebuilds from the ~x86 portage tree and they work fine, with one exception :

I can launch Thunderbird once, create the profile and everything, but after I quit then it won't run again. I traced this to the Enigmail compiled-in extension. Solutions :

1- (if you didn't compile it yet) compile with USE=-crypt
2- (if you already compiled it) delete the XUL.mfasl profile file, run Thunderbird, disable the Enigmail extension

If you need Enigmail, you should (re)install it as root from the Enigmail site using the provided xpi files.

-K
Back to top
View user's profile Send private message
mOjO_420
n00b
n00b


Joined: 11 Jun 2003
Posts: 71
Location: Suburbs of Chicago, IL, USA

PostPosted: Sun Dec 07, 2003 7:16 am    Post subject: Reply with quote

fizz wrote:
No, but i have noticed that java runs like crap now, i even tried unmerging blackdown, and re-merging, i also tried using sun's sdk of 1.4.2 and it sluggish and buttons on dialog boxes disappear.


Same here... runnin gnome on a kinda old Athlon 700mhz classic and when i open a page with a few Java scrollers it drags my system down... CPU usage is ~90% and the java apps on the pages dont even move smoothly... same pages in opera are also a bit sluggish but cpu is only ~30%...

while googling around i saw this page where it says that 1.4.2 is required and sure enough there is no ebuild for 1.4.2, only blackdown 1.4.1 which i have. However, fizz said he tried suns 1.4.2 so maybe thats not the issue. This is really annoying though, if anyone has any suggestions it would be much appreciated. I never expected my Linux box would run Java poorly while the windows machine has no problems :-\

Perhaps fizz and I need to start a new thread on this. As it may not be just firebirds problem.
_________________
http://thegeekclub.net
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Goto page Previous  1, 2, 3, 4
Page 4 of 4

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum