Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 71113 - multisync refuses to config when evolution2 is installed
Summary: multisync refuses to config when evolution2 is installed
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: x86 Linux
: High minor (vote)
Assignee: Gentoo PDA project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-11-13 19:17 UTC by Helmut Eberharter
Modified: 2004-11-24 14:50 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Helmut Eberharter 2004-11-13 19:17:16 UTC
in the config, multisync checks if evolution is installed. the corresponding code from 'multisync-0.82/plugins/evolution_sync/configure'

~~~snipp~~~
EVO_VER=`evolution --version | sed -e 's/.nome .volution //g'
EVO_MAJVER=${EVO_VER:0:1}
EVO_MINVER=${EVO_VER:2:1}
[...]
if (( EVO_MAJVER > 1 || [...]
~~~snapp~~~

this doesnt work, cause evolution (in my case) propts its version as 'Gnome evolution-2.0 2.0.2'

i managed it to make the config work here. just changed this line

EVO_VER=`evolution --version | sed -e 's/.nome .volution //g'`

to

EVO_VER=`evolution --version | sed -e 's/.nome .volution-//g'`

i think this will be a problem for everyone out threre using evolution2

--
regards, Henry78

Reproducible: Always
Steps to Reproduce:
1.emerge evolution2
2.emerge multisync
3.

Actual Results:  
~~~snipp~~~
configure: error: This version of the Evolution plugin (and MultiSync) does only 
work with Evolution >= 1.4.

!!! ERROR: app-pda/multisync-0.82 failed.
!!! Function econf, Line 449, Exitcode 1
!!! econf failed
~~~snapp~~~
Comment 1 Ben 2004-11-16 13:12:10 UTC
multisync also posts an error if you already have it installed when you try to use  the evolution plugin. 
Comment 2 Helmut Eberharter 2004-11-18 10:03:12 UTC
i forgot: you have to set the 'evo' use flag, or else you won't have the config problem.
Comment 3 Alastair Tse (RETIRED) gentoo-dev 2004-11-23 03:04:11 UTC
even tho it compiles, it doesn't work with evo 2.0? according to multisync homepage, the cvs version works with 2.0.
Comment 4 Helmut Eberharter 2004-11-24 14:50:49 UTC
you're completely right, Alastair Tse.
was my fault.