summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2009-04-30 20:30:21 +0000
committerPatrick Lauer <patrick@gentoo.org>2009-04-30 20:30:21 +0000
commitb6a7e8a897e46e24bf9c62dc7fd3f78cc43d2afb (patch)
treec9396c94562dc831cfd1dd9637b27daa765e2a6b /app-office
parentRun plain eautoconf wrt #268016, thanks to Peter Alfredsen and Christer Ekhol... (diff)
downloadgentoo-2-b6a7e8a897e46e24bf9c62dc7fd3f78cc43d2afb.tar.gz
gentoo-2-b6a7e8a897e46e24bf9c62dc7fd3f78cc43d2afb.tar.bz2
gentoo-2-b6a7e8a897e46e24bf9c62dc7fd3f78cc43d2afb.zip
Buuuuump to 1.1.2
(Portage version: 2.2_rc31/cvs/Linux x86_64)
Diffstat (limited to 'app-office')
-rw-r--r--app-office/akonadi-server/ChangeLog8
-rw-r--r--app-office/akonadi-server/akonadi-server-1.1.2.ebuild37
2 files changed, 44 insertions, 1 deletions
diff --git a/app-office/akonadi-server/ChangeLog b/app-office/akonadi-server/ChangeLog
index db94a0d62c77..3067acc31016 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-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.13 2009/04/11 15:56:27 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.14 2009/04/30 20:30:21 patrick Exp $
+
+*akonadi-server-1.1.2 (30 Apr 2009)
+
+ 30 Apr 2009; Patrick Lauer <patrick@gentoo.org>
+ +akonadi-server-1.1.2.ebuild:
+ Buuuuump to 1.1.2
11 Apr 2009; Raúl Porcel <armin76@gentoo.org>
akonadi-server-1.1.1.ebuild:
diff --git a/app-office/akonadi-server/akonadi-server-1.1.2.ebuild b/app-office/akonadi-server/akonadi-server-1.1.2.ebuild
new file mode 100644
index 000000000000..c6ed2e1511c2
--- /dev/null
+++ b/app-office/akonadi-server/akonadi-server-1.1.2.ebuild
@@ -0,0 +1,37 @@
+# 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.1.2.ebuild,v 1.1 2009/04/30 20:30:21 patrick Exp $
+
+EAPI="2"
+
+inherit qt4 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"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+IUSE="+mysql"
+
+RDEPEND="x11-libs/qt-core:4
+ x11-libs/qt-dbus:4
+ x11-libs/qt-sql:4[mysql?]
+ x11-libs/qt-test:4
+ x11-misc/shared-mime-info"
+DEPEND="${RDEPEND}
+ >=dev-util/cmake-2.6.0
+ dev-libs/boost
+ dev-libs/libxslt
+ >=kde-base/automoc-0.9.88"
+
+S="${WORKDIR}/${P/-server/}"
+
+src_prepare() {
+ # Don't check for mysql, avoid an automagic dep.
+ if ! use mysql; then
+ sed -e '/mysqld/s/find_program/#DONOTWANT &/' \
+ -i "${S}"/server/CMakeLists.txt || die 'Sed failed.'
+ fi
+}