diff options
Diffstat (limited to 'gnome/evolution-data-server/Pkgfile')
-rw-r--r-- | gnome/evolution-data-server/Pkgfile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnome/evolution-data-server/Pkgfile b/gnome/evolution-data-server/Pkgfile new file mode 100644 index 000000000..9e9251070 --- /dev/null +++ b/gnome/evolution-data-server/Pkgfile @@ -0,0 +1,26 @@ +# Description: Evolution's Backend Server +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch +# Depends on: gtk-doc, libgnomeui, libsoup, nss, libical + +name=evolution-data-server +version=2.26.3 +release=1 +source=(http://ftp.gnome.org/pub/gnome/sources/evolution-data-server/2.26/$name-$version.tar.bz2 configure.patch) + +build() { + cd $name-$version + patch -Np0 -i ../configure.patch + ./configure --prefix=$GNOME_PREFIX \ + --libexecdir=$GNOME_PREFIX/lib/evolution-data-server \ + --enable-nntp \ + --enable-gnome-keyring \ + --enable-nss \ + --with-nspr-includes=/usr/include/nspr \ + --with-nss-includes=/usr/include/nss \ + --enable-smime \ + + make + make DESTDIR=$PKG install + rm -r $PKG/$GNOME_PREFIX/share/gtk-doc +} |