diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-11-20 14:39:55 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-11-20 14:39:55 +0000 |
commit | 22fd8c5e97b8a8039c02698c4a6e07c00cc13bd4 (patch) | |
tree | a1908d9f2ae6bf6a85c3f204d181cbb81c6e273d /app-office/akonadi-server | |
parent | Version bump thanks to James Rowe (bug #293836). (diff) | |
download | gentoo-2-22fd8c5e97b8a8039c02698c4a6e07c00cc13bd4.tar.gz gentoo-2-22fd8c5e97b8a8039c02698c4a6e07c00cc13bd4.tar.bz2 gentoo-2-22fd8c5e97b8a8039c02698c4a6e07c00cc13bd4.zip |
Drop old.
(Portage version: 2.2_rc50/cvs/Linux x86_64)
Diffstat (limited to 'app-office/akonadi-server')
-rw-r--r-- | app-office/akonadi-server/ChangeLog | 6 | ||||
-rw-r--r-- | app-office/akonadi-server/akonadi-server-1.1.2.ebuild | 48 | ||||
-rw-r--r-- | app-office/akonadi-server/akonadi-server-1.2.0.ebuild | 65 |
3 files changed, 5 insertions, 114 deletions
diff --git a/app-office/akonadi-server/ChangeLog b/app-office/akonadi-server/ChangeLog index 27f71e91d23e..24b72ef4f041 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-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.23 2009/10/17 10:32:48 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.24 2009/11/20 14:39:55 scarabeus Exp $ + + 20 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org> + -akonadi-server-1.1.2.ebuild, -akonadi-server-1.2.0.ebuild: + Drop old. 17 Oct 2009; Markus Meier <maekke@gentoo.org> akonadi-server-1.2.1.ebuild: x86 stable, bug #287695 diff --git a/app-office/akonadi-server/akonadi-server-1.1.2.ebuild b/app-office/akonadi-server/akonadi-server-1.1.2.ebuild deleted file mode 100644 index 4e626273933e..000000000000 --- a/app-office/akonadi-server/akonadi-server-1.1.2.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# 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.4 2009/09/06 01:58:44 jmbsvicetto 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" - -RDEPEND=" - dev-libs/boost - >=x11-libs/qt-core-4.5.0:4 - >=x11-libs/qt-dbus-4.5.0:4 - >=x11-libs/qt-sql-4.5.0:4[mysql?] - x11-misc/shared-mime-info -" -DEPEND="${RDEPEND} - 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 -} - -pkg_postinst() { - if ! use mysql; then - echo - ewarn "You have decided to build akonadi-server with mysql USE" - ewarn "flag disabled. Note, that this is the only supported" - ewarn "database backend, hence akonadi-server will not work." - echo - fi -} diff --git a/app-office/akonadi-server/akonadi-server-1.2.0.ebuild b/app-office/akonadi-server/akonadi-server-1.2.0.ebuild deleted file mode 100644 index f124e0da3da7..000000000000 --- a/app-office/akonadi-server/akonadi-server-1.2.0.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# 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.0.ebuild,v 1.5 2009/09/12 10:54:58 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="~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 - echo - 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:" - elog "QMYSQL, QSQLITE (experimental)" - elog "Note that QMYSQL is the one fully tested and officially supported." - 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 -} |