You are not logged in.
i am trying to install sylpheed2.5.0, it is an email client. I have tried to compile and i get errors. There is a outdated package sylpheed2.4.8-1 in the extra section.
sylpheed source code
Note: i am using AMD64
Offline
I just changed the PKGBUILD in abs a little bit. Works on my, x86, system. Haven't tested it on x86_64 though. Hopes it helps
# $Id: PKGBUILD 356 2008-04-18 22:56:27Z aaron $
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
# Contributor: dorphell <dorphell@archlinux.org>
pkgname=sylpheed
pkgver=2.5.0
pkgrel=1
pkgdesc="A GTK+ based, lightweight, and fast email client"
arch=(i686 x86_64)
url="http://sylpheed.good-day.net/"
depends=('gpgme' 'gtkspell')
license=('GPL' 'LGPL')
makedepends=('pkgconfig')
source=(http://sylpheed.sraoss.jp/${pkgname}/v2.5/${pkgname}-${pkgver}.tar.bz2 \
sylpheed-2.2-replace-aspell-with-enchant.diff)
url="http://sylpheed.good-day.net/"
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
patch -Np1 -i ${startdir}/src/sylpheed-2.2-replace-aspell-with-enchant.diff || return 1
./configure --prefix=/usr --enable-ssl --enable-gpgme --enable-ldap
make || return 1
make DESTDIR=${startdir}/pkg install
mkdir -p ${startdir}/pkg/usr/share/{applications,pixmaps}
install -m644 sylpheed.desktop $startdir/pkg/usr/share/applications/
install -m644 sylpheed.png $startdir/pkg/usr/share/pixmaps/
}Offline
i get the following error
==> ERROR: sylpheed-2.2-replace-aspell-with-enchant.diff was not found in the build directory and is not a URL.Offline
you need all the files you'll find here (no idea if the patch will still apply):
http://repos.archlinux.org/viewvc.cgi/s … xtra-i686/
if you do not need the patch anymore, remove the patch line from the PKGBUILD and the patch name in the source array in the PKGBUILD.
All design goals must be phrased in such a way that it is hard to use them as slogans to justify stupidity.
Offline
another error
collect2: ld returned 1 exit status
make[3]: *** [sylpheed] Error 1
make[3]: Leaving directory `/home/pedro/abs/sylpheed/src/sylpheed-2.5.0/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/pedro/abs/sylpheed/src/sylpheed-2.5.0/src'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/pedro/abs/sylpheed/src/sylpheed-2.5.0'
make: *** [all-recursive-am] Error 2
==> ERROR: Build Failed.
Aborting...note: i commented out the patch line
Offline
hmmm I'm not using Sylpheed but tried to build 2.5.0 and everything went fine (with or without patch)... Is your system up to date ? BTW, could you cut & paste the error message a little bit earlier in the build process.
All design goals must be phrased in such a way that it is hard to use them as slogans to justify stupidity.
Offline
Offline
2.5 is in extra now http://archlinux.org/packages/4320/
thanks!
Offline