wok-next annotate evolution-data-server/receipt @ rev 21661

updated fonttosfnt (1.0.5 -> 1.1.0)
author Hans-G?nter Theisgen
date Sat Jun 27 13:41:53 2020 +0100 (2020-06-27)
parents d5aab818505e
children
rev   line source
al@20462 1 # SliTaz package receipt v2.
pascal@15721 2
pascal@15721 3 PACKAGE="evolution-data-server"
pascal@15721 4 VERSION="2.28.1"
pascal@15721 5 CATEGORY="network"
al@20462 6 SHORT_DESC="Integrated mail, addressbook and calendaring, server"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15721 8 LICENSE="LGPL2"
al@21020 9 WEB_SITE="https://wiki.gnome.org/Apps/Evolution"
al@20462 10
pascal@15721 11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
al@20462 12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
pascal@15721 13
al@21017 14 BUILD_DEPENDS="libglade-dev libsoup-dev gtk2-dev orbit2-dev libbonobo-dev \
al@21078 15 gconf-dev libical-dev firefox-dev db-dev libxcb-dev popt-dev bison flex \
al@20462 16 glib-dev sqlite3-dev"
al@21020 17 SPLIT="$PACKAGE-dev"
pascal@15721 18
al@20462 19 compile_rules() {
pascal@15721 20 ./configure \
pascal@15721 21 --prefix=/usr \
pascal@15721 22 --infodir=/usr/share/info \
pascal@15721 23 --libexecdir=/usr/lib/evolution-data-server-1.2 \
pascal@15721 24 --mandir=/usr/share/man \
pascal@15721 25 --without-weather \
pascal@15721 26 --enable-ipv6=no \
pascal@15721 27 --enable-libdb \
pascal@15721 28 --with-db=/usr/lib \
pascal@15721 29 --with-nspr-include=/usr/include/firefox-3.5.3/stable \
pascal@15721 30 --with-nspr-libs=/usr/lib/firefox-devel-3.5.3/sdk/lib \
pascal@15721 31 $CONFIGURE_ARGS &&
al@20956 32 make &&
al@21020 33 make DESTDIR=$install install
pascal@15721 34 }
pascal@15721 35
al@20462 36 genpkg_rules() {
al@20462 37 case $PACKAGE in
al@20462 38 evolution-data-server)
al@20956 39 copy @std
al@20462 40 DEPENDS="libgnomeui libsoup"
al@20462 41 ;;
al@20462 42 *-dev)
al@20956 43 copy @dev
al@20462 44 ;;
al@20462 45 esac
pascal@15721 46 }
pascal@15721 47