# Maintainer: Natanael Copa pkgname=claws-mail pkgver=3.8.0 pkgrel=1 pkgdesc="A GTK+ based e-mail client." url="http://www.claws-mail.org" arch="all" license="GPL3" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" makedepends="gtk+-dev openssl-dev startup-notification-dev enchant-dev libsm-dev gnutls-dev curl-dev dbus-glib-dev libetpan-dev openldap-dev" depends= install= source="http://downloads.sourceforge.net/sourceforge/sylpheed-claws/$pkgname-$pkgver.tar.bz2 libc-version.patch " _builddir="$srcdir"/$pkgname-$pkgver prepare() { cd "$_builddir" for i in $source; do case $i in *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1 ;; esac done } build() { cd "$_builddir" ./configure --prefix=/usr \ --disable-static \ --enable-enchant \ --enable-gnutls \ --enable-ldap \ --disable-dillo-viewer-plugin \ --disable-crash-dialog \ --enable-pgpmime-plugin \ --enable-spamassassin-plugin \ --enable-bogofilter-plugin \ --disable-jpilot \ || return 1 # force disabling of backtrace. the core dump was more useful sed -i -e '/HAVE_BACKTRACE/d' config.h make || return 1 cd tools make } package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 rm "$pkgdir"/usr/lib/claws-mail/plugins/*.la find tools -maxdepth 1 -type f -and -perm /111 -or -name '*.conf' | while read i; do install -D -m755 ${i} "$pkgdir"/usr/lib/claws-mail/tools/${i} done } md5sums="df9f1657d7f34959a2205344d952c2e3 claws-mail-3.8.0.tar.bz2 f3416743b5d8ff97b5a3cc2f7efc2dc1 libc-version.patch"