* debian/control: - update standards version to 3.8.1. - update (build-)deps for 2.26. - add build-dep on libical-dev and libicu-dev. * debian/*.install: upgrade paths to 2.26. * debian/lintian/*: upgrade paths to 2.26. git-svn-id: file:///svn/pkg-evolution/experimental/evolution@1147 ed03ce00-e4f4-0310-9448-ee38221cb277
46 lines
1.2 KiB
Makefile
Executable File
46 lines
1.2 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')
|
|
|
|
|
|
ELIBDIR := usr/lib/evolution/2.26
|
|
|
|
DEB_SHLIBDEPS_INCLUDE := debian/evolution/usr/lib/evolution/2.26
|
|
DEB_DH_MAKESHLIBS_ARGS_evolution += -V'evolution (>= ${UPSTREAM_VERSION})' --noscripts -X $(ELIBDIR)/components
|
|
DEB_DH_MAKESHLIBS_ARGS_ALL += --noscripts -X $(ELIBDIR)/plugins
|
|
|
|
|
|
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 \
|
|
--without-weather
|
|
|
|
configure:
|
|
dh_testdir
|
|
autoreconf -vfi
|
|
|
|
clean::
|
|
find -name '*.schemas' | xargs rm -f
|