You are not logged in.

#1 2004-09-04 15:15:02

zeppelin
Member
From: Athens, Greece
Registered: 2004-03-05
Posts: 807
Website

Offline

#2 2004-09-05 06:02:51

tehdely
Member
Registered: 2004-02-20
Posts: 148
Website

Re: [REQ] Sunbird

I'm interested  wink


[Arch GNUstep Repository] [ PKGBUILDS ]
[code][gnustep]
Server = ftp://blkwidow.lerp.com/pub/mirror/arch/gnustep[/code]

Offline

#3 2004-09-07 17:38:41

hyp0luxa
Member
From: Miami, FL
Registered: 2004-07-10
Posts: 70

Re: [REQ] Sunbird

i'd like to see this as well.

Offline

#4 2004-09-09 20:09:16

hyp0luxa
Member
From: Miami, FL
Registered: 2004-07-10
Posts: 70

Re: [REQ] Sunbird

well, it seems that the source is only available via cvs, and you need to check out a bunch of firefox stuff too in order to build it. see http://www.mozilla.org/projects/calenda … build.html

seems like more trouble than it's worth right now. but i tried out the binary, and it seems like a good app.

Offline

#5 2004-09-10 05:06:13

hyp0luxa
Member
From: Miami, FL
Registered: 2004-07-10
Posts: 70

Re: [REQ] Sunbird

here's a PKGBUILD

# Contributor: Elias J. Guerrero (hyp0luxa) <hyp0luxa@yahoo.com>

pkgname=mozilla-sunbird
pkgver=cvs
pkgrel=1
pkgdesc="A CVS build of Mozilla's Sunbird Calendar Application"
url="http://www.mozilla.org/projects/calendar/sunbird.html"
depends=()
makedepends=('cvs')
cvsroot=":pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot"

build() {
  cd $startdir/src

  # get rid of existing .mozconfig if necessary
  if [ -f ~/.mozconfig ]
  then
    msg "Warning: existing .mozconfig in home directory saved to ~/.mozconfig.s$
    mv ~/.mozconfig ~/.mozconfig.save
  fi

  #cvs checkouts
  msg "Connecting to Mozilla CVS server...password is 'anonymous'"
  cvs -d $cvsroot login
  msg "Checking out Mozilla....this will take awhile"
  cvs -d $cvsroot checkout mozilla/client.mk
  make -f mozilla/client.mk checkout
  cvs -d $cvsroot co mozilla/browser
  cvs -d $cvsroot co mozilla/chrome
  cvs -d $cvsroot co mozilla/toolkit
  cvs -d $cvsroot co mozilla/sunbird

  # modify default configure settings to enable gtk2
  # and disable xft (uses freetype2 instead)
  sed -e '9a ac_add_options --enable-toolkit-gtk2
  ac_add_options --enable-default-toolkit=gtk2
  ac_add_options --disable-toolkit-qt
  ac_add_options --disable-toolkit-xlib
  ac_add_options --disable-toolkit-gtk
  ac_add_options --disable-xft' $startdir/src/mozilla/calendar/sunbird/config/mozconfig

  # write new ~./mozconfig
  echo . $startdir/src/mozilla/calendar/sunbird/config/mozconfig > ~/.mozconfig
  cd $startdir/src/mozilla

  # actual build
  make -f client.mk build || return 1
  make DESTDIR=$startdir/pkg install
} 

Offline

#6 2004-10-12 06:48:20

orjanp
Member
From: Tromsoe, Norway
Registered: 2004-07-03
Posts: 347

Re: [REQ] Sunbird

Anyone know why I get this error when I try to make this pacage? It works fine when making other pacages. I have installed the cvs pacage.

[root@ArchLinux mozilla-sunbird]# makepkg
./PKGBUILD: line 25: unexpected EOF while looking for matching `"'
./PKGBUILD: line 50: syntax error: unexpected end of file
==> Making package: mozilla-sunbird  (Tue Oct 12 08:39:22 CEST 2004)
==> Checking Runtime Dependencies...
==> Checking Buildtime Dependencies...
==> Retrieving Sources...
==> Validating source files with MD5sums
==> Extracting Sources...
==> Removing existing pkg/ directory...
==> Starting build()...
/usr/bin/makepkg: line 552: build: command not found
==> ERROR: Build Failed.  Aborting...

Ørjan Pettersen

Offline

#7 2004-10-12 19:48:29

kpiche
Forum Fellow
From: Ottawa, ON, Canada
Registered: 2004-03-30
Posts: 246
Website

Re: [REQ] Sunbird

The first msg command does not have a delimiting " character.  Also the sed command does not modify the file but sends the modifications to stdout.

Offline

#8 2004-10-20 07:10:13

orjanp
Member
From: Tromsoe, Norway
Registered: 2004-07-03
Posts: 347

Re: [REQ] Sunbird

Thanks.

Now I get this error when I try to build it

checking for libIDL - version >= 0.6.3... no
*** The libIDL-config script installed by libIDL could not be found
*** If libIDL was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the LIBIDL_CONFIG environment variable to the
*** full path to libIDL-config.
checking for orbit-config... no
configure: error: libIDL not found.
        libIDL 0.6.3 or higher is required.
*** Fix above errors and then restart with "make -f client.mk build"
make: *** [/usr/local/download/custompkgs/mozilla-sunbird/src/mozilla/Makefile] Error 1
==> ERROR: Build Failed.  Aborting...

So I try to search for libIDL...

[root@ArchLinux mozilla-sunbird]# slocate libIDL
/usr/include/libIDL-2.0
/usr/include/libIDL-2.0/libIDL
/usr/include/libIDL-2.0/libIDL/IDL.h
/usr/lib/pkgconfig/libIDL-2.0.pc
/usr/lib/libIDL-2.so.0.0.0
/usr/lib/libIDL-2.a
/usr/lib/libIDL-2.la
/usr/lib/libIDL-2.so
/usr/lib/libIDL-2.so.0
/usr/bin/libIDL-config-2
/usr/local/download/custompkgs/mozilla-sunbird/src/mozilla/build/autoconf/libIDL-2.m4
/usr/local/download/custompkgs/mozilla-sunbird/src/mozilla/build/autoconf/libIDL.m4

Have not been able to find out what's wrong. So, could anyone make this package and host it for a while, so I could download it? That would have made my day.

Orjanp...


Ørjan Pettersen

Offline

#9 2004-10-20 09:13:45

orjanp
Member
From: Tromsoe, Norway
Registered: 2004-07-03
Posts: 347

Re: [REQ] Sunbird

I fixed it by installing libIDL instead og libIDL2. Now I was able to make the package.


Ørjan Pettersen

Offline

#10 2004-10-20 09:36:10

orjanp
Member
From: Tromsoe, Norway
Registered: 2004-07-03
Posts: 347

Re: [REQ] Sunbird

Well, it doesn't seem like this is going to work for me.

Now, I get a relocation error when I try to run sunbird.
Here is the error.

[orjanp@ArchThinkpad ~]$ sunbird
*** Registering -calendar handler.
*** Registering text/calendar handler.
*** Registering webcal protocol handler.
/usr/local/lib/sunbird-0.2a/sunbird-bin: relocation error: /usr/local/lib/sunbird-0.2a/components/libdocshell.so: undefined symbol: _ZN15nsDocLoaderImplC1Ev
[orjanp@ArchThinkpad ~]$ 

Anyone have an idea? Is this a shared library problem?


Ørjan Pettersen

Offline

#11 2005-03-15 08:37:17

dtw
Forum Fellow
From: UK
Registered: 2004-08-03
Posts: 4,439
Website

Re: [REQ] Sunbird

i think this has been updated - can someone look into it?

Offline

#12 2005-03-15 09:01:09

orjanp
Member
From: Tromsoe, Norway
Registered: 2004-07-03
Posts: 347

Re: [REQ] Sunbird

Hope a TU can add this to his list


Ørjan Pettersen

Offline

#13 2005-10-03 07:23:40

Shofs
Member
From: Central Illinois
Registered: 2004-12-15
Posts: 184

Re: [REQ] Sunbird

BUMP

Offline

#14 2005-11-17 04:57:24

nbcjr
Member
From: BRAZIL!
Registered: 2004-12-04
Posts: 79

Re: [REQ] Sunbird

bump

Offline

#15 2005-11-17 09:22:42

dtw
Forum Fellow
From: UK
Registered: 2004-08-03
Posts: 4,439
Website

Re: [REQ] Sunbird

bumping is gonna do jack.  If you want the app then I suggest you work out how to pkg it, no one else is going to because it's a PITA and most people really don't care about it!

Offline

#16 2005-11-17 12:21:54

kth5
Member
Registered: 2004-04-29
Posts: 657
Website

Re: [REQ] Sunbird

it's complaining about mozconfig which does not exists, not in my $HOME nor somewhere in the builddir. oh, and it mustn't mess in $HOME anyway.


I recognize that while theory and practice are, in theory, the same, they are, in practice, different. -Mark Mitchell

Offline

#17 2005-11-17 20:50:20

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: [REQ] Sunbird

It probably needs to be patched to use mozilla-config which is in the mozilla package.  I assume that mozilla-config  and  mozconfig do the same thing. Could be wrong though. :?

Offline

Board footer

Powered by FluxBB