summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej Mrozowski <reavertm@gentoo.org>2010-09-07 17:59:23 +0000
committerMaciej Mrozowski <reavertm@gentoo.org>2010-09-07 17:59:23 +0000
commitdc77230eb02681e2fe0f619cb1361f3bfcff2a36 (patch)
treedc78506007558ef8cc9382375964ff54fb094b51 /app-office
parentEnable SQLite backend as default one, fix SQLite driver name (QSQLITE3 is new... (diff)
downloadgentoo-2-dc77230eb02681e2fe0f619cb1361f3bfcff2a36.tar.gz
gentoo-2-dc77230eb02681e2fe0f619cb1361f3bfcff2a36.tar.bz2
gentoo-2-dc77230eb02681e2fe0f619cb1361f3bfcff2a36.zip
Remove old, sorry hppa (hppa already lost KDE keywords anyway...)
(Portage version: 2.2_rc75/cvs/Linux x86_64)
Diffstat (limited to 'app-office')
-rw-r--r--app-office/akonadi-server/ChangeLog6
-rw-r--r--app-office/akonadi-server/akonadi-server-1.2.1.ebuild70
2 files changed, 5 insertions, 71 deletions
diff --git a/app-office/akonadi-server/ChangeLog b/app-office/akonadi-server/ChangeLog
index a6195a9e6482..ce283b22df16 100644
--- a/app-office/akonadi-server/ChangeLog
+++ b/app-office/akonadi-server/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-office/akonadi-server
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.45 2010/09/07 17:45:48 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.46 2010/09/07 17:59:23 reavertm Exp $
+
+ 07 Sep 2010; Maciej Mrozowski <reavertm@gentoo.org>
+ -akonadi-server-1.2.1.ebuild:
+ Remove old, sorry hppa (hppa already lost KDE keywords anyway...)
07 Sep 2010; Maciej Mrozowski <reavertm@gentoo.org>
+akonadi-server-1.4.0-r1.ebuild:
diff --git a/app-office/akonadi-server/akonadi-server-1.2.1.ebuild b/app-office/akonadi-server/akonadi-server-1.2.1.ebuild
deleted file mode 100644
index a889806de283..000000000000
--- a/app-office/akonadi-server/akonadi-server-1.2.1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2010 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.14 2010/08/15 13:34:50 armin76 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="amd64 ~arm hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
-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-libs/qt-test-4.5.0:4
- x11-misc/shared-mime-info
-"
-DEPEND="${RDEPEND}
- dev-libs/libxslt
- >=dev-util/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
- cat <<-EOF > "${T}"/akonadiserverrc
-[%General]
-Driver=${driver}
-EOF
- insinto /usr/share/config/akonadi
- doins "${T}"/akonadiserverrc || die "doins failed"
-
- 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
-}