[arch-commits] Commit in claws-mail-extra-plugins/trunk (PKGBUILD)
andyrtr at archlinux.org
andyrtr at archlinux.org
Tue May 18 18:16:08 UTC 2010
Date: Tuesday, May 18, 2010 @ 14:16:06
Author: andyrtr
Revision: 80538
upgpkg: claws-mail-extra-plugins 3.7.6-2
add missing libsoup-gnome (#19496) and python opt dependencies
Modified:
claws-mail-extra-plugins/trunk/PKGBUILD
----------+
PKGBUILD | 27 ++++++++++++++++++++-------
1 file changed, 20 insertions(+), 7 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2010-05-18 17:34:14 UTC (rev 80537)
+++ PKGBUILD 2010-05-18 18:16:06 UTC (rev 80538)
@@ -4,13 +4,13 @@
pkgname=claws-mail-extra-plugins
pkgver=3.7.6
-pkgrel=1
+pkgrel=2
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.6')
-makedepends=('make' 'bc' 'perl>=5.10.1-5' 'libgtkhtml>=2.11.1-2' 'libnotify>=0.4.5' 'libxml2>=2.7.6' 'curl>=7.19.7' 'libytnef>=1.5-2' 'libwebkit>=1.1.15.4-2' 'libchamplain>=0.4.4' 'pygtk>=2.16.0')
+makedepends=('make' 'bc' 'perl>=5.10.1-5' 'libgtkhtml>=2.11.1-2' 'libnotify>=0.4.5' 'libxml2>=2.7.6' 'curl>=7.19.7' 'libytnef>=1.5-2' 'libwebkit>=1.1.15.4-2' 'libchamplain>=0.4.4' 'pygtk>=2.16.0' 'libsoup-gnome')
optdepends=('libgtkhtml: for gtkhtml2_viewer plugin'
'perl: for perl plugin'
'libnotify: for notification plugin'
@@ -18,8 +18,9 @@
'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'
- 'libchamplain: for geolocation plugin')
+ 'libwebkit,libsoup-gnome: for the fancy webkit html plugin'
+ 'libchamplain: for geolocation plugin'
+ 'python: for python 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')
@@ -38,10 +39,22 @@
./configure --prefix=/usr --disable-static || return 1
touch "arch-configured"
make || return 1
+ cd ..
+ done
+}
+
+package() {
+ 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, install
+ cd "$dir"
make DESTDIR=$startdir/pkg install || return 1
cd ..
- done
+ done
- # fix fileconflict with libical, #11485
- rm -f ${pkgdir}/usr/include/ical.h
+ # fix fileconflict with libical, #11485
+ rm -f ${pkgdir}/usr/include/ical.h
}
More information about the arch-commits
mailing list