* New upstream release * Acknowledge NMU from Security Team: - remove 80_CVE-2008-0072.patch: applied upstream * Bump Standards-version to 3.7.3 * Upgrade build-dep: - libsoup2.4-dev from libsoup2.2-dev * Bump build-deps: - libglib2.0-dev (>= 2.15.3) - libgtk2.0-dev (>= 2.12.0) - evolution-data-server-dev (>= 2.21.92) - evolution-data-server-dev (<< 2.23.0) - gnome-icon-theme (>= 2.19.91) - libbonobo2-dev (>= 2.20.3) - libgtkhtml3.14-dev (>= 3.17.5) - libgnome-pilot2-dev (>= 2.0.15) - libnotify-dev (>= 0.3.0) * Add build-dep: - pilot-link * Update base plugins: - add google-account-setup - add bogo-junk-plugin - wait and evaluate on mono * Update standard plugins: - add audio-inline - rename new-mail-notify to mail-notification - add attachment-reminder - add face - add backup-restore * Update experimental plugins: - remove backup-restore - add external-editor - add tnef-attachments git-svn-id: file:///svn/pkg-evolution/unstable/evolution@973 ed03ce00-e4f4-0310-9448-ee38221cb277
40 lines
1.1 KiB
Makefile
Executable File
40 lines
1.1 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
include /usr/share/cdbs/1/rules/buildvars.mk
|
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
include /usr/share/cdbs/1/class/autotools.mk
|
|
include /usr/share/cdbs/1/class/gnome.mk
|
|
include /usr/share/cdbs/1/rules/utils.mk
|
|
include /usr/share/cdbs/1/rules/simple-patchsys.mk
|
|
|
|
UPSTREAM_VERSION := $(shell dpkg-parsechangelog | grep ^Version | sed -ne 's/^Version: //g' -e 's/-[^-]*$$//pg')
|
|
|
|
DEB_SHLIBDEPS_INCLUDE := debian/evolution/usr/lib/evolution/2.22
|
|
DEB_DH_MAKESHLIBS_ARGS_evolution += -V'evolution (>= ${UPSTREAM_VERSION})' --noscripts
|
|
DEB_DH_MAKESHLIBS_ARGS_evolution-plugins += --noscripts
|
|
DEB_DH_MAKESHLIBS_ARGS_evolution-plugins-experimental += --noscripts
|
|
|
|
ELIBDIR := usr/lib/evolution/2.22
|
|
|
|
CFLAGS += -fPIC
|
|
|
|
DEB_CONFIGURE_EXTRA_FLAGS += \
|
|
--with-openldap \
|
|
--enable-nls \
|
|
--without-openssl-includes \
|
|
--without-openssl-libs \
|
|
--enable-pilot-conduits \
|
|
--enable-cairo-calendar \
|
|
--enable-exchange=yes \
|
|
--without-krb4 \
|
|
--with-krb5=/usr \
|
|
--enable-ipv6 \
|
|
--disable-openssl \
|
|
--sysconfdir=/etc \
|
|
--enable-nntp \
|
|
--libexecdir=/usr/lib \
|
|
--enable-plugins=experimental
|
|
|
|
clean::
|
|
find -name '*.schemas' | xargs rm -f
|