PKGBUILDs/extra/claws-mail-extra-plugins/PKGBUILD
2009-10-09 21:23:22 -05:00

52 lines
2.2 KiB
Bash

# $Id: PKGBUILD 53390 2009-09-30 19:55:26Z andyrtr $
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
# Contributor: Mildred <mildred593 at online dot fr>
pkgname=claws-mail-extra-plugins
pkgver=3.7.2
pkgrel=3
pkgdesc="Extra plugins for claws-mail"
url="http://www.claws-mail.org/plugins.php?branch=EXT"
license=('GPL3')
arch=('i686' 'x86_64')
depends=('claws-mail>=3.7.2')
makedepends=('make' 'bc' 'perl>=5.10.1-3' 'libgtkhtml>=2.11.1-2' 'libnotify>=0.4.5' 'libxml2>=2.7.3-2' 'curl>=7.19.5-2' 'libytnef>=1.5-2' 'libwebkit>=1.1.10-1')
optdepends=('libgtkhtml: for gtkhtml2_viewer plugin'
'perl: for perl plugin'
'libnotify: for notification plugin'
'libxml2: for gtkhtml2_viewer and rssyl plugins'
'curl: for gtkhtml2_viewer, vcalendar, rssyl and spamreport plugins'
'libarchive: for archive plugin'
'libytnef: for tnef_parse plugin'
'libwebkit: for the fancy webkit html plugin')
conflicts=('claws-gtkhtml2_viewer' 'claws-mail-acpinotifier-plugin' 'sylpheed-claws-gtkhtml2-plugin' 'sylpheed-claws-rssyl-plugin' 'sylpheed-claws-extra-plugins' 'claws-tnef-plugin' 'claws-webkit-plugin-svn' 'claws-mayflower-plugin-svn')
replaces=('sylpheed-claws-extra-plugins')
options=('!libtool')
source=(http://downloads.sourceforge.net/project/sylpheed-claws/extra%20plugins/$pkgver/claws-mail-extra-plugins-$pkgver.tar.bz2
fix_fancy_hangups.patch)
md5sums=('0bdbbf69b2420e4bbb8d0ae85f9f85d6'
'894388c033072cba170c921912090d22')
build() {
cd "${srcdir}/claws-mail-extra-plugins-$pkgver"/fancy*/src
patch -Np0 -i ${srcdir}/fix_fancy_hangups.patch || return 1
cd "${srcdir}/claws-mail-extra-plugins-$pkgver"
for dir in *; do
# Continue if it is not a directory or the synce plugin
[ ! -d "$dir" ] && continue
echo "$dir" | grep synce >/dev/null 2>/dev/null && continue
# Else, compile
cd "$dir"
[ -e "$configured_file" ] || \
./configure --prefix=/usr --disable-static || return 1
touch "arch-configured"
make || return 1
make DESTDIR=$startdir/pkg install || return 1
cd ..
done
# fix fileconflict with libical, #11485
rm -f ${pkgdir}/usr/include/ical.h
}