Talked with somebody in irc #claws.
He said that the package has to be corrupted. I tested this by building the package for my own, some tweaking to SLKBUILD from sources was required to get it working, please see attached file SLKBUILD.
Same behaviour with newly built package, so I don't know what to do then.
BTW: I wonder about the originally used mirror for the sources. How can the configure script be directly called instead of my need to call autogen.sh?
Code: Select all
#Maintainer: xy
pkgname=claws-mail
pkgver=3.7.3
pkgrel=1xy
arch=i486
source=("http://downloads.sourceforge.net/project/sylpheed-claws/Claws%20Mail/$pkgver/$pkgname-$pkgver.tar.bz2" "http://www.claws-mail.org/download.php?file=themes/png/claws-mail-theme_gnome-brave.tar.gz")
url="http://www.claws-mail.org/"
docs=('ABOUT-NLS' 'AUTHORS' 'ChangeLog' 'COPYING' 'INSTALL' 'NEWS' 'README' 'TODO')
slackdesc=\
(
#|-----handy-ruler------------------------------------------------------|
"Claws Mail (A GTK+ based, lightweight, and fast e-mail client)."
"Sylpheed-Claws - it bites! A GTK+ based, lightweight, and fast e-mail"
"client and newsreader. Supports POP3, APOP, IMAP, SMTP,AUTH, NNTP,"
"LDAP. Features multiple accounts, spell-checking, address book SSL,"
"GPG/PGP, filtering, scoring, i18n, & more."
)
build() {
# default theme
mkdir -p $startdir/pkg/usr/share/claws-mail/themes/
mv gnome-brave $startdir/pkg/usr/share/claws-mail/themes/ || return 1
## sed -i 's/#define\ DEFAULT_PIXMAP_THEME.*/#define\ DEFAULT_PIXMAP_THEME\ "\/usr\/share\/claws-mail\/themes\/TangoClaws"/' src/common/defs.h
cd $startdir/src/$pkgname-$pkgver
./autogen.sh \
--prefix=/usr \
--mandir=/usr/man \
--docdir=/usr/doc/$pkgname-$pkgver \
--disable-static \
--disable-spamassassin-plugin \
--disable-dillo-viewer-plugin \
--disable-jpilot \
--disable-gnomeprint
make -j3 || return 1
make DESTDIR=$startdir/pkg/ install
}
# Doinst
doinst() {
if [ -x usr/bin/gtk-update-icon-cache ]; then
usr/bin/gtk-update-icon-cache -f -t usr/share/icons/hicolor 1> /dev/null 2>&1
fi
}