summaryrefslogtreecommitdiff
path: root/nonprism/evolution-data-server-nonprism/PKGBUILD
blob: edeed0f08f0968c282ea62e8fb14d6d31dcdd0bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# $Id: PKGBUILD 219313 2014-08-05 09:10:52Z jgc $
# Maintainer (Arch): Jan de Groot <jgc@archlinux.org>

_pkgname=evolution-data-server
pkgname=evolution-data-server-nonprism
pkgver=3.12.4
pkgrel=3
pkgdesc="Centralized access to appointments and contacts, without libgdata support"
arch=(i686 x86_64)
depends=(gnome-online-accounts nss krb5 libgweather libical db)
makedepends=(intltool gperf gobject-introspection vala python2)
install=$_pkgname.install
url="https://wiki.gnome.org/Apps/Evolution"
license=(GPL)
replaces=("$_pkgname" 'evolution-data-server-coherence')
conflicts=($_pkgname)
provides=($_pkgname=$pkgver)
source=(http://ftp.gnome.org/pub/gnome/sources/$_pkgname/${pkgver:0:4}/$_pkgname-$pkgver.tar.xz
        git-fixes.patch)
sha256sums=('5e424ec560e46e0b26d290d04ad5146d9b313a956abcf99ef46ac3d8633060c7'
            '554ab45b943910e32c20c5aa3771416f3a48294ef1716a5130cea20bbdd07ef3')

prepare() {
  # git version 6f210eeba1cfaa300aa4931e580514de0f7b11d5, configure.ac parts reverted
  cd "$_pkgname-$pkgver"
  patch -Np1 -i ../git-fixes.patch
}

build() {
  cd "$_pkgname-$pkgver"
  ./configure --prefix=/usr --sysconfdir=/etc \
      --localstatedir=/var --with-openldap=yes \
      --libexecdir=/usr/lib/evolution-data-server \
      --with-krb5=/usr --with-libdb=/usr \
      --without-libgdata \
      --disable-google \
      --enable-vala-bindings --disable-uoa
  sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0 /g' -e 's/    if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then/      func_append compile_command " -Wl,-O1,--as-needed"\n      func_append finalize_command " -Wl,-O1,--as-needed"\n\0/' libtool
  make
}

package() {
  cd "$_pkgname-$pkgver"
  make DESTDIR="$pkgdir" install
}