You are not logged in.
Pages: 1
It's out for 10 days, it's flagged outdated, but still nothing happens.
I understand that it's a big upgrade (but not as big as KDE 3.5.5, which is available in testing).
Offline
our maintainer is on vacation, and i haven't had the time to look at it.
expect the packages soon, but i can' t give you an exact date
Offline
The current package build works if you adjust the pkgver variable:
pkgver=1.6.0
It's running great on Arch64.
# $Id: PKGBUILD,v 1.33 2006/07/13 12:25:09 alexander Exp $
# Maintainer: Alexander Baldeck <alexander>
pkgname=koffice
pkgver=1.6.0
stable=stable # stable|unstable
pkgrel=1
pkgdesc="An integrated Office suite for KDE"
arch=(i686 x86_64)
url="http://www.koffice.org"
depends=('kdelibs>=3.5.2' 'aspell' 'wv2' 'imagemagick>=6.2.6' 'python' 'libwpd'
'libxslt' 'libexif')
makedepends=('pkgconfig' 'libpqxx>=2.5' 'mysql' 'ruby')
source=(ftp://ftp.fu-berlin.de/pub/unix/X11/gui/kde/${stable}/koffice-${pkgver}/src/${pkgname}-${pkgver}.tar.bz2)
build() {
# Source the QT and KDE profile
[ "$QTDIR" = "" ] && source /etc/profile.d/qt.sh
[ "$KDEDIR" = "" ] && source /etc/profile.d/kde.sh
cd ${startdir}/src/${pkgname}-${pkgver}
[ -f Makefile.cvs -a ${stable} = 'unstable' ] && make -f Makefile.cvs
./configure --prefix=/opt/kde --enable-new-ldflags --disable-debug
--disable-doc
make || return 1
make DESTDIR=${startdir}/pkg install || return 1
rm -rf ${startdir}/pkg/opt/kde/share/doc
}Offline
I'll be back from the Philippines around the 2nd October or so. I couldn't yet take care of the upgrade since I have no i686 with me and inet connectivity is really flaky over here. Well, expect an update in the upcoming week or so. ![]()
I recognize that while theory and practice are, in theory, the same, they are, in practice, different. -Mark Mitchell
Offline
Thanks for the reply.
kth5: I hope you mean "November 2nd, 2006" and not "October 2nd, 2007"
skottish: I know that modified PKGBUILD form ABS works (god I love arch), but there are people around me (very young archers
) asking for "official" package, that's why i asked on forum.
Offline
problems here, with the skottish pkgbuild:
make[5]: Entering directory `/mnt/container/abs_extra/koffice/src/koffice-1.6.0/filters/kword/wordperfect/import'
/bin/sh ../../../../libtool --silent --tag=CXX --mode=link g++ -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -DNDEBUG -DNO_DEBUG -O2 -march=i686 -O2 -pipe -Wformat-security -Wmissing-format-attribute -Wno-non-virtual-dtor -fno-exceptions -fno-check-new -fno-common -DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT -DQT_NO_TRANSLATION -DHAVE_KNEWSTUFF -o libwpimport.la -rpath /opt/kde/lib/kde3 -L/opt/kde/lib -L/opt/qt/lib -L/usr/lib -Wl,--as-needed -Wl,--enable-new-dtags -module -avoid-version -no-undefined -Wl,--no-undefined -Wl,--allow-shlib-undefined wpimport.lo DocumentElement.lo FontStyle.lo ListStyle.lo PageSpan.lo SectionStyle.lo TableStyle.lo TextRunStyle.lo WordPerfectCollector.lo ../../../../lib/kofficeui/libkofficeui.la ../../../../lib/kofficecore/libkofficecore.la ../../../../lib/store/libkstore.la -lwpd-0.8
grep: /usr/lib/libstdc++.la: No such file or directory
/bin/sed: can't read /usr/lib/libstdc++.la: No such file or directory
libtool: link: `/usr/lib/libstdc++.la' is not a valid libtool archive
make[5]: *** [libwpimport.la] Error 1
make[5]: Leaving directory `/mnt/container/abs_extra/koffice/src/koffice-1.6.0/filters/kword/wordperfect/import'
make[4]: *** [all-recursive] Error 1
make[4]: Leaving directory `/mnt/container/abs_extra/koffice/src/koffice-1.6.0/filters/kword/wordperfect'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/mnt/container/abs_extra/koffice/src/koffice-1.6.0/filters/kword'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/mnt/container/abs_extra/koffice/src/koffice-1.6.0/filters'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/mnt/container/abs_extra/koffice/src/koffice-1.6.0'
make: *** [all] Error 2
==> ERROR: Build Failed. Aborting...
ideas :?
[code]sorry for my english [/code]
Offline
I believe that you need libstdc++5.
Offline
Pages: 1