summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-03-28 03:56:47 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-03-28 03:56:47 +0000
commite16640a030246586c96318d2b610f01bd109a1e5 (patch)
tree5777d914f8407b12f55ae52b7ca6531d853e6f12 /app-pda/synce-sync-engine
parentFix missing gnome-base/gnome-common DEPEND wrt #360859 by Oleg. (diff)
downloadgentoo-2-e16640a030246586c96318d2b610f01bd109a1e5.tar.gz
gentoo-2-e16640a030246586c96318d2b610f01bd109a1e5.tar.bz2
gentoo-2-e16640a030246586c96318d2b610f01bd109a1e5.zip
Fix install path for libopensync plug-in.
(Portage version: 2.2.0_alpha28/cvs/Linux x86_64)
Diffstat (limited to 'app-pda/synce-sync-engine')
-rw-r--r--app-pda/synce-sync-engine/ChangeLog8
-rw-r--r--app-pda/synce-sync-engine/synce-sync-engine-0.15.1-r2.ebuild (renamed from app-pda/synce-sync-engine/synce-sync-engine-0.15.1-r1.ebuild)7
2 files changed, 11 insertions, 4 deletions
diff --git a/app-pda/synce-sync-engine/ChangeLog b/app-pda/synce-sync-engine/ChangeLog
index 0c5ce1092a31..6ccf403a99bc 100644
--- a/app-pda/synce-sync-engine/ChangeLog
+++ b/app-pda/synce-sync-engine/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for app-pda/synce-sync-engine
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-sync-engine/ChangeLog,v 1.11 2011/03/28 01:47:32 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-sync-engine/ChangeLog,v 1.12 2011/03/28 03:56:47 ssuominen Exp $
+
+*synce-sync-engine-0.15.1-r2 (28 Mar 2011)
+
+ 28 Mar 2011; Samuli Suominen <ssuominen@gentoo.org>
+ synce-sync-engine-0.15.1-r1.ebuild, +synce-sync-engine-0.15.1-r2.ebuild:
+ Fix install path for libopensync plug-in.
28 Mar 2011; Samuli Suominen <ssuominen@gentoo.org>
synce-sync-engine-0.15.1-r1.ebuild, metadata.xml:
diff --git a/app-pda/synce-sync-engine/synce-sync-engine-0.15.1-r1.ebuild b/app-pda/synce-sync-engine/synce-sync-engine-0.15.1-r2.ebuild
index e2a705678786..1466b868876c 100644
--- a/app-pda/synce-sync-engine/synce-sync-engine-0.15.1-r1.ebuild
+++ b/app-pda/synce-sync-engine/synce-sync-engine-0.15.1-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-sync-engine/synce-sync-engine-0.15.1-r1.ebuild,v 1.5 2011/03/28 01:51:09 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-pda/synce-sync-engine/synce-sync-engine-0.15.1-r2.ebuild,v 1.1 2011/03/28 03:56:47 ssuominen Exp $
EAPI=3
@@ -50,12 +50,13 @@ src_install() {
find "${D}" -type d -name plugins -exec rm -rf {} +
if use opensync; then
- insinto /usr/$(get_libdir)/opensync/python-plugin
local plug=plugins/synce-opensync-plugin-
- if has_version ">=app-pda/libopensync-0.30"; then
+ if has_version ">=app-pda/libopensync-0.39"; then
+ insinto /usr/$(get_libdir)/libopensync1/python-plugins
newins ${plug}3x.py synce-plugin.py || die
else
+ insinto /usr/$(get_libdir)/opensync/plugins
newins ${plug}2x.py synce-plugin.py || die
fi