diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2011-01-26 19:44:22 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2011-01-26 19:44:22 +0000 |
commit | 34e9edb10b3d7ffe66186f178e1541299f5c94d3 (patch) | |
tree | 3c13157f4586fe5af1c89c16cbcc0b350247ba76 /app-office/akonadi-server | |
parent | Version bump, fix tests, push docs to correct directory (diff) | |
download | gentoo-2-34e9edb10b3d7ffe66186f178e1541299f5c94d3.tar.gz gentoo-2-34e9edb10b3d7ffe66186f178e1541299f5c94d3.tar.bz2 gentoo-2-34e9edb10b3d7ffe66186f178e1541299f5c94d3.zip |
[app-office/akonadi-server] Version bump for kde sc 4.6.0
(Portage version: 2.2.0_alpha19_p2/cvs/Linux x86_64)
Diffstat (limited to 'app-office/akonadi-server')
-rw-r--r-- | app-office/akonadi-server/ChangeLog | 10 | ||||
-rw-r--r-- | app-office/akonadi-server/akonadi-server-1.5.0.ebuild | 94 |
2 files changed, 102 insertions, 2 deletions
diff --git a/app-office/akonadi-server/ChangeLog b/app-office/akonadi-server/ChangeLog index 24b7773a1b69..b239a243c8d4 100644 --- a/app-office/akonadi-server/ChangeLog +++ b/app-office/akonadi-server/ChangeLog @@ -1,6 +1,12 @@ # 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.48 2010/10/22 17:07:36 reavertm Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.49 2011/01/26 19:44:22 alexxy Exp $ + +*akonadi-server-1.5.0 (26 Jan 2011) + + 26 Jan 2011; Alexey Shvetsov <alexxy@gentoo.org> + +akonadi-server-1.5.0.ebuild: + Version bump for kde sc 4.6.0 *akonadi-server-1.4.1 (22 Oct 2010) diff --git a/app-office/akonadi-server/akonadi-server-1.5.0.ebuild b/app-office/akonadi-server/akonadi-server-1.5.0.ebuild new file mode 100644 index 000000000000..5f85dcfc8570 --- /dev/null +++ b/app-office/akonadi-server/akonadi-server-1.5.0.ebuild @@ -0,0 +1,94 @@ +# Copyright 1999-2011 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.5.0.ebuild,v 1.1 2011/01/26 19:44:22 alexxy Exp $ + +EAPI="3" + +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 postgres +sqlite +server" + +CDEPEND=" + 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?,postgres?] + >=x11-libs/qt-test-4.5.0:4 + x11-misc/shared-mime-info +" +DEPEND="${CDEPEND} + dev-libs/libxslt + >=dev-util/automoc-0.9.88 +" +RDEPEND="${CDEPEND} + server? ( + postgres? ( dev-db/postgresql-server ) + ) +" + +S="${WORKDIR}/${P/-server/}" + +pkg_setup() { + # Set default storage backend in order: SQLite, MySQL, PostgreSQL + local available + if use sqlite; then + driver="QSQLITE3" + available+=" ${driver}" + elif use mysql; then + driver="QMYSQL" + available+=" ${driver}" + elif use postgres; then + driver="QPSQL" + available+=" ${driver}" + fi + + # Notify about driver name change + if use sqlite && has_version "<=${CATEGORY}/${PN}-1.4.0[sqlite]"; then + ewarn + ewarn "SQLite driver name changed from QSQLITE to QSQLITE3." + ewarn "Please edit your ~/.config/akonadi/akonadiserverrc." + fi + + # Notify about MySQL not being default anymore + if ! use mysql && has_version "<=${CATEGORY}/${PN}-1.4.0[mysql]"; then + ewarn + ewarn "MySQL driver is not enabled by default in Gentoo anymore." + ewarn "If you intend to use it, please enable mysql USE flag and reinstall" + ewarn "${CATEGORY}/${PN}." + ewarn "Otherwise select different driver in your ~/.config/akonadi/akonadiserverrc." + ewarn "Available drivers are:${available}" + fi +} + +src_install() { + # 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 postgres || use sqlite; then + elog + elog "${driver} has been set as your default akonadi storage backend." + elog "You can override it in your ~/.config/akonadi/akonadiserverrc." + elog "Available drivers are: QMYSQL, QPSQL, QSQLITE3" + else + ewarn + ewarn "You have decided to build ${PN} with" + ewarn "'mysql', 'postgres' and 'sqlite' USE flags disabled." + ewarn "${PN} will not be functional." + fi +} |