diff options
author | Jonathan Callen <abcd@gentoo.org> | 2010-01-20 07:30:26 +0000 |
---|---|---|
committer | Jonathan Callen <abcd@gentoo.org> | 2010-01-20 07:30:26 +0000 |
commit | 2ffef9bd4235b8b48b1d593b84a9fd3ea49577db (patch) | |
tree | bdb583942f13e75a9c0eb3ea0362da43b3644358 /app-office/akonadi-server | |
parent | Version bump. (diff) | |
download | gentoo-2-2ffef9bd4235b8b48b1d593b84a9fd3ea49577db.tar.gz gentoo-2-2ffef9bd4235b8b48b1d593b84a9fd3ea49577db.tar.bz2 gentoo-2-2ffef9bd4235b8b48b1d593b84a9fd3ea49577db.zip |
Keyword ~amd64-linux/~x86-linux; use helpers to avoid EPREFIX
(Portage version: -svn/cvs/Linux i686)
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.2.1.ebuild | 9 |
2 files changed, 10 insertions, 5 deletions
diff --git a/app-office/akonadi-server/ChangeLog b/app-office/akonadi-server/ChangeLog index c9829144af06..4f0dbea61fc7 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.29 2010/01/14 01:46:32 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.30 2010/01/20 07:30:26 abcd Exp $ + + 20 Jan 2010; Jonathan Callen <abcd@gentoo.org> + akonadi-server-1.2.1.ebuild: + Keyword ~amd64-linux/~x86-linux; use helpers to avoid EPREFIX 14 Jan 2010; Jeroen Roovers <jer@gentoo.org> akonadi-server-1.2.1.ebuild: Stable for HPPA (bug #295884). diff --git a/app-office/akonadi-server/akonadi-server-1.2.1.ebuild b/app-office/akonadi-server/akonadi-server-1.2.1.ebuild index 23632cdcc809..e355e58c9d77 100644 --- a/app-office/akonadi-server/akonadi-server-1.2.1.ebuild +++ b/app-office/akonadi-server/akonadi-server-1.2.1.ebuild @@ -1,6 +1,6 @@ # 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.10 2010/01/14 01:46:32 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.2.1.ebuild,v 1.11 2010/01/20 07:30:26 abcd Exp $ EAPI="2" @@ -11,7 +11,7 @@ HOMEPAGE="http://pim.kde.org/akonadi" SRC_URI="http://download.akonadi-project.org/${P/-server/}.tar.bz2" LICENSE="LGPL-2.1" -KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86" +KEYWORDS="alpha amd64 ~arm hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux" SLOT="0" IUSE="+mysql sqlite" @@ -37,11 +37,12 @@ src_install() { 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 + cat <<-EOF > "${T}"/akonadiserverrc [%General] Driver=${driver} EOF + insinto /usr/share/config/akonadi + doins "${T}"/akonadiserverrc || die "doins failed" cmake-utils_src_install } |