You are not logged in.

#201 2006-03-17 01:32:46

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

RaLX wrote:

Trying to install I get:

error: unresolvable dependencies:
  epiphany: requires xulrunner>=1.8.0.1-2 but it is not in the sync db

Enable the Testing repo...

Offline

#202 2006-03-17 01:37:47

RaLX
Member
Registered: 2005-10-17
Posts: 54

Re: Gnome 2.14 Release

_Gandalf_ wrote:
RaLX wrote:

Trying to install I get:

error: unresolvable dependencies:
  epiphany: requires xulrunner>=1.8.0.1-2 but it is not in the sync db

Enable the Testing repo...

Thanks!, downloading right now to test it.

Offline

#203 2006-03-17 06:12:22

High|ander
Member
From: Skövde, Sweden
Registered: 2005-10-28
Posts: 188
Website

Re: Gnome 2.14 Release

I hav installed the 2.13 from you repo but now liferea gives this:

/opt/gnome/bin/liferea-bin: error while loading shared libraries: libdbus-glib-1.so.1: cannot open shared object file: No such file or directory

Why is this?


When death smiles at you, all you can do is smile back!
Blog

Offline

#204 2006-03-17 06:19:20

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

You need to recompile it against dbud 0.60, just use abs and makepkg; pacman -U ...

Offline

#205 2006-03-17 08:39:23

alexthelion
Member
From: Switzerland
Registered: 2004-03-06
Posts: 117

Re: Gnome 2.14 Release

Everybody is hyping about epiphany these days - can we please get an updated epiphany-extensions package? Thanks!

Offline

#206 2006-03-17 09:28:35

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

alexthelion wrote:

Everybody is hyping about epiphany these days - can we please get an updated epiphany-extensions package? Thanks!

epiphany pkgbuild

# $Id: PKGBUILD,v 1.39 2006/02/11 19:33:17 jgc Exp $
# Maintainer: dale <dale@archlinux.org>

pkgname=epiphany
pkgver=2.14.0
pkgrel=1
install=epiphany.install
pkgdesc="A GNOME2 web browser based on the mozilla rendering engine."
depends=(xulrunner gnome-desktop iso-codes libgnomeprintui)
makedepends=(intltool gnome-doc-utils gnome-python pkgconfig)
groups=(gnome)
url="http://www.gnome.org/projects/epiphany/"
source=(http://ftp.gnome.org/pub/GNOME/sources/epiphany/2.14/epiphany-${pkgver}.tar.bz2)

build() {
  [ -z "${GNOMEDIR}" ] && . /etc/profile.d/gnome.sh
  [ -z "${MOZ_PLUGIN_PATH}" ] && . /etc/profile.d/mozilla-common.sh

  cd ${startdir}/src/epiphany-${pkgver}
  sed -i -e 's|pydefsdir =.*|pydefsdir = /usr/share/pygtk/2.0/defs|' 
      src/Makefile.* || return 1
  ./configure --prefix=/opt/gnome --enable-python 
      --enable-certificate-manager 
    --enable-dbus 
    --disable-scrollkeeper 
    --with-mozilla=xulrunner
  make LDFLAGS+="-R /opt/mozilla/lib/xulrunner" || return 1
  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=${startdir}/pkg install || return 1
}

epiphany.install

pkgname=epiphany

post_install() {
  schemas=(`pacman -Ql $pkgname | grep 'gconf/schemas/.*schemas$' | awk '{ print $2 }'`)
  scrolls=(`pacman -Ql $pkgname | grep 'share/omf/.*.omf$' | awk '{ print $2 }'`)

  export GCONF_CONFIG_SOURCE=`opt/gnome/bin/gconftool-2 --get-default-source`
  for schema in "${schemas[@]}" ; do
    opt/gnome/bin/gconftool-2 --makefile-install-rule "$schema" >/dev/null 2>&1
  done

  for scroll in "${scrolls[@]}" ; do
    scrollkeeper-install -q -p var/lib/scrollkeeper "$scroll"
  done

  kill -s HUP `pidof /opt/gnome/bin/gconfd-2` > /dev/null 2>&1
  kill -s HUP `pidof /opt/gnome/libexec/bonobo-activation-server` > /dev/null 2>&1
  update-desktop-database -q
}

pre_upgrade() {
  pre_remove $1
}

post_upgrade() {
  post_install $1
}

pre_remove() {
  schemas=(`pacman -Ql $pkgname | grep 'gconf/schemas/.*schemas$' | awk '{ print $2 }'`)
  scrolls=(`pacman -Ql $pkgname | grep 'share/omf/.*.omf$' | awk '{ print $2 }'`)

  export GCONF_CONFIG_SOURCE=`opt/gnome/bin/gconftool-2 --get-default-source`
  for schema in "${schemas[@]}" ; do
    opt/gnome/bin/gconftool-2 --makefile-uninstall-rule "$schema" >/dev/null 2>&1
  done

  for scroll in "${scrolls[@]}" ; do
    scrollkeeper-uninstall -q -p var/lib/scrollkeeper "$scroll"
  done

  kill -s HUP `pidof /opt/gnome/bin/gconfd-2` >/dev/null 2>&1
}

post_remove() {
  kill -s HUP `pidof /opt/gnome/libexec/bonobo-activation-server` > /dev/null 2>&1
  update-desktop-database -q
}

op=$1
shift

$op $*

epiphany-extension pkgbuild

# $Id: PKGBUILD,v 1.18 2006/02/12 11:20:05 jgc Exp $
# Maintainer: arjan <arjan@archlinux.org>
# Committer: Dale Blount <dale@archlinux.org>

pkgname=epiphany-extensions
pkgver=2.14.0.1
pkgrel=1
url="http://www.gnome.org/projects/epiphany/"
pkgdesc="Various extentions for the Epiphany web browser"
depends=('epiphany>=1.9.99' 'gnome-python' 'pcre')
source=(http://ftp.gnome.org/pub/GNOME/sources/epiphany-extensions/2.14/epiphany-extensions-${pkgver}.tar.bz2)
md5sums=('1b8ec450167010b25bba48295b5808cf')

build() {
  [ -z "${GNOMEDIR}" ] && . /etc/profile.d/gnome.sh
  [ -z "${MOZ_PLUGIN_PATH}" ] && . /etc/profile.d/mozilla-common.sh

  cd ${startdir}/src/epiphany-extensions-${pkgver}
  ./configure --prefix=/opt/gnome --with-extensions=really-all
  make LDFLAGS+="-R /opt/mozilla/lib/xulrunner" || return 1
  make DESTDIR=${startdir}/pkg install
  find ${startdir}/pkg -name '*.la' -exec rm {} ;
}

Offline

#207 2006-03-17 14:29:46

alexthelion
Member
From: Switzerland
Registered: 2004-03-06
Posts: 117

Re: Gnome 2.14 Release

Doesn't build for me, epiphany's ./configure is complaining about Xulrunner not being configure'd correctly, but i have xulrunner from testing (1.8.0.1-2).

Offline

#208 2006-03-17 17:57:58

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

You have already Gnome 2.13.92 right ?

Offline

#209 2006-03-17 18:40:52

Global Havok
Member
Registered: 2006-02-20
Posts: 79

Re: Gnome 2.14 Release

Just got done upgrading an hour or so ago.  So far everything seems to work great usability wise.  My splash no longer disappears without me clicking my mouse, but everything seems to work fine so far.  Any new features i should test out?

Offline

#210 2006-03-17 23:06:38

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

Blaasvis updated his repo, Gnome 2.14 is in, Great big_smile

Offline

#211 2006-03-17 23:44:31

Gullible Jones
Member
Registered: 2004-12-29
Posts: 4,863

Re: Gnome 2.14 Release

It is? 2.14 final, not RC1?

Offline

#212 2006-03-18 00:21:31

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

It is the final now,... look at the screenshot...
27749_screen.th.png

Offline

#213 2006-03-18 01:14:02

Gullible Jones
Member
Registered: 2004-12-29
Posts: 4,863

Re: Gnome 2.14 Release

Wow... Are there still artifacts from dragging windows? Are the performance increases what I've been told of? :shock:

(If it's half as good as people say, I'm installing it tonight...)

Offline

#214 2006-03-18 02:11:34

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

Hmmm i noticed a speed performance, but sorry i cannot tell what's different from 2.12 i've been using 2.13.X since a month and half now so i don't remember

Offline

#215 2006-03-18 03:13:29

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

I have a good news for you all big_smile, Gnome power manager works Like a charm yikes, here's how to install it, First make sure you are running Gnome 2.14 (2.12 will not benefit from it ATM)

First add my repo to your pacman.conf

[wael]
Server = http://wael.nasreddine.com/files/arch/repo/wael/os/i686/

and install powersave and gnome-power-manager from my repo (Because powersave in unstable is compiled against dbus 0.50)

pacman -S wael/powersave wael/gnome-power-manager

add your username to power group

gpasswd -a username power

now do the below commands or Just reboot your computer

rm /var/run/dbus.pid
/etc/rc.d/dbus restart
/etc/rc.d/powersaved restart

run gnome-power-manager

gnome-power-manager

from your Terminal (or Alt+F2)

and test it (Right click, suspend/hibernate)

Hibernate did not work for me, something related to kernel and powersave, look at the below post...

here's gnome-power-manager pkgbuild

# Contributor: Wael Nasreddine <gandalf@siemens-mobiles.org> 

pkgname=gnome-power-manager 
pkgver=2.14.0
pkgrel=1 
pkgdesc="Power Manager for gnome" 
url="http://www.gnome.org/projects/gnome-power-manager/" 
depends=('libnotify>=0.3.2-4' 'libgnomeui' 'libwnck') 
makedepends=('intltool') 
source=(http://ftp.gnome.org/pub/GNOME/sources/gnome-power-manager/2.14/$pkgname-$pkgver.tar.bz2) 
install=gnome-power-manager.install 
md5sums=('d98f7e2a920e3d94dd8b65b476cd88ce')

build() { 
  cd $startdir/src/$pkgname-$pkgver 
  ./configure --prefix=/opt/gnome --disable-schemas-install --enable-libnotify --disable-scrollkeeper 
          --with-dbus-sys=/etc/dbus-1/system.d --with-dbus-services=/usr/share/dbus-1/services 
          || return 1
  make || return 1 
  make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=${startdir}/pkg install || return 1 
}

gnome-power-manager.install

pkgname=gnome-power-manager 

post_install() { 
  schemas=(`pacman -Ql $pkgname | grep 'gconf/schemas/.*schemas$' | awk '{ print $2 }'`) 
  scrolls=(`pacman -Ql $pkgname | grep 'share/omf/.*.omf$' | awk '{ print $2 }'`) 

  export GCONF_CONFIG_SOURCE=`opt/gnome/bin/gconftool-2 --get-default-source` 
  for schema in "${schemas[@]}" ; do 
    opt/gnome/bin/gconftool-2 --makefile-install-rule "$schema" >/dev/null 2>&1 
  done 

  for scroll in "${scrolls[@]}" ; do 
    scrollkeeper-install -q -p var/lib/scrollkeeper "$scroll" 
  done 

  kill -s HUP `pidof /opt/gnome/bin/gconfd-2` >/dev/null 2>&1 
  update-desktop-database -q 
} 

pre_upgrade() { 
  pre_remove $1 
} 

post_upgrade() { 
  post_install $1 
} 

pre_remove() { 
  schemas=(`pacman -Ql $pkgname | grep 'gconf/schemas/.*schemas$' | awk '{ print $2 }'`) 
  scrolls=(`pacman -Ql $pkgname | grep 'share/omf/.*.omf$' | awk '{ print $2 }'`) 

  export GCONF_CONFIG_SOURCE=`opt/gnome/bin/gconftool-2 --get-default-source` 
  for schema in "${schemas[@]}" ; do 
    opt/gnome/bin/gconftool-2 --makefile-uninstall-rule "$schema" >/dev/null 2>&1 
  done 

  for scroll in "${scrolls[@]}" ; do 
    scrollkeeper-uninstall -q -p var/lib/scrollkeeper "$scroll" 
  done 

  kill -s HUP `pidof /opt/gnome/bin/gconfd-2` >/dev/null 2>&1 
} 

post_remove() { 
  update-desktop-database -q 
} 

op=$1 
shift 

$op $* 

Cheers

Offline

#216 2006-03-18 03:41:51

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

powersave -U i.e hibernate does not work for me, (not gnome-power-manager issue but powersave issue) for that problem please keep the discussion about it in http://bbs.archlinux.org/viewtopic.php?p=150039#150039

Offline

#217 2006-03-18 04:03:58

timtux
Member
From: Gävle, Sweden
Registered: 2005-10-04
Posts: 178
Website

Re: Gnome 2.14 Release

nice wink found what i was searching for: pacman -S deskbar-applet

edit: this version is much faster then gnome 2.12 big_smile


http://timtux.net/ - my personal blog about almost everything

Offline

#218 2006-03-18 04:05:30

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

oh yep, exacly, thx smile

Offline

#219 2006-03-18 06:10:41

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

@Blaasvis: libnotify depends on notification-daemon, without it, it does not work,
try

notify-send -i gtk-dialog-info "Title" "Message"

with and without notification-daemon, and see what happens
i already fixed that issue for my gnome-power-manager by forcefully request libnotify>=0.3.2-4

Offline

#220 2006-03-18 08:04:34

geekner
Member
From: Mesa, AZ
Registered: 2006-01-12
Posts: 16
Website

Re: Gnome 2.14 Release

_Gandalf_ wrote:

Blaasvis updated his repo, Gnome 2.14 is in, Great big_smile

Enabled the repo, downloaded the files, but it spits out:

error: archive gdm-2.14.0-1.pkg.tar.gz is corrupted
error: archive gnome-doc-utils-0.6.0-1.pkg.tar.gz is corrupted

and dies. Any ideas?

Offline

#221 2006-03-18 08:11:08

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

I haven't got this error, probably ur download has failed, try deleting those files

rm -f /var/cache/pacman/pkg/gdm-2.14.0-1.pkg.tar.gz /var/cache/pacman/pkg/gnome-doc-utils-0.6.0-1.pkg.tar.gz

if u still have the problem, then wait for Blaasvis to re-upload them and/or regenerate his repo file

Offline

#222 2006-03-18 08:20:15

geekner
Member
From: Mesa, AZ
Registered: 2006-01-12
Posts: 16
Website

Re: Gnome 2.14 Release

_Gandalf_ wrote:

I haven't got this error, probably ur download has failed, try deleting those files

rm -f /var/cache/pacman/pkg/gdm-2.14.0-1.pkg.tar.gz /var/cache/pacman/pkg/gnome-doc-utils-0.6.0-1.pkg.tar.gz

if u still have the problem, then wait for Blaasvis to re-upload them and/or regenerate his repo file

Thanks, ive tried deleting them and even manually downloading them from his repo, but it isnt working. I guess I'll have to wait until he updates. Just out of curiosity, what do you get when you MD5sum your working version?

# md5sum /var/cache/pacman/pkg/gdm-2.14.0-1.pkg.tar.gz

My output is:

da4cabca8116dd1cc1b63e4e87814cad  gdm-2.14.0-1.pkg.tar.gz

Offline

#223 2006-03-18 08:27:06

Blaasvis
Member
Registered: 2003-01-17
Posts: 467

Re: Gnome 2.14 Release

_Gandalf_ wrote:

@Blaasvis: libnotify depends on notification-daemon, without it, it does not work,
try

notify-send -i gtk-dialog-info "Title" "Message"

with and without notification-daemon, and see what happens
i already fixed that issue for my gnome-power-manager by forcefully request libnotify>=0.3.2-4

gnome works fine without the notification daemon, i do not want to add another depency to the chain wink


Freedom is what i love

Offline

#224 2006-03-18 08:29:23

_Gandalf_
Member
Registered: 2006-01-12
Posts: 735

Re: Gnome 2.14 Release

@Blaasvis gnome works, but not libnotify... try it man... it does not work so better removing it too from gnome dependencies ...

Offline

#225 2006-03-18 08:40:09

geekner
Member
From: Mesa, AZ
Registered: 2006-01-12
Posts: 16
Website

Re: Gnome 2.14 Release

I think I fixed the problem, had to install the deps then run pacman -U for the "corrupted" files, they installed properly. Weird, now to restart and see if it works.

Offline

Board footer

Powered by FluxBB