69 lines
1.4 KiB
Bash
69 lines
1.4 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit cmake gnome2
|
|
|
|
DESCRIPTION="Evolution module for connecting to Microsoft Exchange Web Services"
|
|
HOMEPAGE="https://wiki.gnome.org/Apps/Evolution"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~arm ~arm64"
|
|
IUSE="test"
|
|
|
|
# libical-glib currently (2020-02-29) oddly behind USE=introspection
|
|
RDEPEND="
|
|
dev-db/sqlite:3
|
|
>=dev-libs/glib-2.46:2
|
|
>=dev-libs/libical-3.0.5:0=[introspection(-)]
|
|
>=dev-libs/json-glib-1.0.4
|
|
>=dev-libs/libmspack-0.4
|
|
dev-libs/libxml2:2
|
|
>=gnome-extra/evolution-data-server-${PV}:0=
|
|
>=mail-client/evolution-${PV}:2.0
|
|
>=net-libs/libsoup-2.58:2.4
|
|
>=x11-libs/gtk+-3.10:3
|
|
"
|
|
DEPEND="${RDEPEND}
|
|
test? ( net-libs/uhttpmock )
|
|
"
|
|
BDEPEND="
|
|
dev-util/gdbus-codegen
|
|
dev-util/glib-utils
|
|
>=dev-util/intltool-0.35.5
|
|
>=sys-devel/gettext-0.18.3
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
# Unittests fail to find libevolution-ews.so
|
|
RESTRICT="test !test? ( test )"
|
|
|
|
# global scope PATCHES or DOCS array mustn't be used due to double default_src_prepare
|
|
# call; if needed, set them after cmake_src_prepare call, if that works
|
|
src_prepare() {
|
|
cmake_src_prepare
|
|
gnome2_src_prepare
|
|
}
|
|
|
|
src_configure() {
|
|
local mycmakeargs=(
|
|
-DWITH_MSPACK=ON
|
|
-DENABLE_TESTS=$(usex test)
|
|
)
|
|
cmake_src_configure
|
|
}
|
|
|
|
src_compile() {
|
|
cmake_src_compile
|
|
}
|
|
|
|
src_test() {
|
|
cmake_src_test
|
|
}
|
|
|
|
src_install() {
|
|
cmake_src_install
|
|
}
|