blob: 13a09f3ebb37d04933774bfbdab23e0bb1f2cea9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.2.1.ebuild,v 1.5 2009/10/17 10:32:48 maekke Exp $
EAPI="2"
inherit cmake-utils
DESCRIPTION="The server part of Akonadi"
HOMEPAGE="http://pim.kde.org/akonadi"
SRC_URI="http://download.akonadi-project.org/${P/-server/}.tar.bz2"
LICENSE="LGPL-2.1"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ~ppc64 x86"
SLOT="0"
IUSE="+mysql sqlite"
RDEPEND="
dev-libs/boost
>=dev-libs/soprano-2.2
>=x11-libs/qt-gui-4.5.0:4[dbus]
>=x11-libs/qt-sql-4.5.0:4[mysql?,sqlite?]
x11-misc/shared-mime-info
"
DEPEND="${RDEPEND}
dev-libs/libxslt
>=kde-base/automoc-0.9.88
"
S="${WORKDIR}/${P/-server/}"
src_install() {
# Set default storage backend in order: mysql, sqlite
if use mysql; then
driver="QMYSQL"
elif use sqlite; then
driver="QSQLITE"
fi
# Who knows, maybe it accidentally fixes our permission issues
mkdir -p "${D}"/usr/share/config/akonadi || die "mkdir failed"
cat <<-EOF > "${D}"/usr/share/config/akonadi/akonadiserverrc
[%General]
Driver=${driver}
EOF
cmake-utils_src_install
}
pkg_postinst() {
if use mysql || use sqlite; then
local func=elog
use sqlite && func=ewarn
echo
${func} "${driver} has been set as your default akonadi storage backend."
${func} "You can override it in your ~/.config/akonadi/akonadiserverrc."
${func} "Available drivers are:"
${func} "QMYSQL, QSQLITE (experimental)"
${func} "Be advised that QMYSQL is the one fully tested and officially supported."
use sqlite && ewarn "If you experience random data losses using QSQLITE driver, you have been warned."
echo
else
echo
ewarn "You have decided to build akonadi-server with both"
ewarn "'mysql' and 'sqlite' USE flags disabled."
ewarn "akonadi-server will not be functional."
echo
fi
}
|