You are not logged in.
Koffice depends on wv2, which in turn depends on libgsf, which depends on gnome. Something is wrong here! I want koffice without gnome!
http://pdfinglis.tripod.com/widget.html
"In order to make an apple pie from scratch, you must first create the universe."
-- Carl Sagan, Cosmos
Offline
SOLUTION:
Compile libgsf with "--without-gnome" option. Here's PKGBUILD:
# $Id: PKGBUILD,v 1.6 2004/07/03 19:07:12 arjan Exp $
# Maintainer: arjan <arjan@archlinux.org>
# Contributor: Sarah Hay <sarahhay@mb.sympatico.ca>
# (gnome dependency removed by rehcra)
[ "$GNOMEDIR" = "" ] && source /etc/profile.d/gnome.sh
pkgname=libgsf-nognome
pkgver=1.9.1
pkgrel=1
pkgdesc="The GNOME Structured File Library is a utility library for reading and writing structured file formats."
depends=()
provides=(libgsf)
conflicts=(libgsf)
makedepends=('intltool')
source=(ftp://ftp.gnome.org/pub/GNOME/sources/libgsf/1.9/libgsf-$pkgver.tar.bz2)
md5sums=('620290f8976ff1d83fa858002f006409')
build() {
cd $startdir/src/libgsf-$pkgver
./configure --prefix=/usr --disable-gtk-doc --without-gnome
make || return 1
make prefix=$startdir/pkg/opt/gnome install
}
http://pdfinglis.tripod.com/widget.html
"In order to make an apple pie from scratch, you must first create the universe."
-- Carl Sagan, Cosmos
Offline
very sorry about this dependency chain
wv2 is needed for MS-Word support in kword
libgsf: http://freshmeat.net/projects/libgsf/ says this:
GLib 2.0.0 (required)
libxml2 2.4.16 (required)
GnomeVFS (recommended)
libbonobo (recommended)
i don't know libgsf good enough, but maybe making gnome-vfs and libbonobo makedepends=() instead of depends=() would solve this
The impossible missions are the only ones which succeed.
Offline
rehcra, thx for --without-gnome option
The impossible missions are the only ones which succeed.
Offline