Bug 343344 - Unable to find a plugin named ' "choqok_twitter" '!
Summary: Unable to find a plugin named ' "choqok_twitter" '!
Status: RESOLVED NOT A BUG
Alias: None
Product: choqok
Classification: Applications
Component: Twitter (show other bugs)
Version: Git
Platform: openSUSE Linux
: NOR grave
Target Milestone: ---
Assignee: Mehrdad Momeny
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-01-26 18:24 UTC by Kévin
Modified: 2015-01-29 08:34 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments
Empty configuration preference (30.53 KB, image/png)
2015-01-26 18:25 UTC, Kévin
Details
Cmake warning about LINK_INTERFACE_LIBRARIES and INTERFACE_LINK_LIBRARIES (1.86 KB, text/plain)
2015-01-26 18:27 UTC, Kévin
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Kévin 2015-01-26 18:24:46 UTC
Hi,

I just installed tag v1.5 from sources with all dependencies listed in README.

Here are my build commands:

    $ cmake -DCMAKE_INSTALL_PREFIX=$HOME/.local ..
    $ make
    $ make install

cmake produces a warning(attached), but compilation and install took place without errors.

Reproducible: Always

Steps to Reproduce:
1. Start Choqok.
2. Click yes when it asks to configure an account, I accept.

Actual Results:  
Empty configuration interface appears (attached).

Expected Results:  
Being able to configure a Twitter account.

While displaying empty configuration interface, Choqok command line prints:

choqok(7751)/kdecore (trader) KServiceTypeTrader::defaultOffers: KServiceTypeTrader: serviceType  "Choqok/Plugin"  not found 
choqok(7751) Choqok::PluginManager::loadPluginInternal: Unable to find a plugin named ' "choqok_twitter" '! 
libpng warning: iCCP: known incorrect sRGB profile
Comment 1 Kévin 2015-01-26 18:25:50 UTC
Created attachment 90676 [details]
Empty configuration preference
Comment 2 Kévin 2015-01-26 18:27:20 UTC
Created attachment 90677 [details]
Cmake warning about LINK_INTERFACE_LIBRARIES and INTERFACE_LINK_LIBRARIES
Comment 3 Kévin 2015-01-26 18:28:21 UTC
Regards
Comment 4 Kévin 2015-01-26 19:02:34 UTC
I have tried installing from sources for 1.4 versions, it does not work either.
In another hand, Choqok 1.4.5 from repositories works.

So, I think theres is something fishy with my configuration. But I still cannot determine what...
Comment 5 Christoph Feck 2015-01-26 23:39:27 UTC
If you are installing KDE components outside the prefixes that KDE searches, you need to add those paths to your environment variables. I suggest to either use distribution packages, or ask on a KDE developer list how to setup those environment variables.
Comment 6 Kévin 2015-01-27 10:49:08 UTC
I subscribe to  choqok-devel mailing list right away.

Thanks Christoph.
Comment 7 Mehrdad Momeny 2015-01-28 02:20:59 UTC
This is more like an installation issue than a Choqok issue. and the CMake warning is just a warning and as it said itself:
"This warning is for project developers.  Use -Wno-dev to suppress it." 
You don't need to mind it.
Comment 8 Kévin 2015-01-29 08:34:59 UTC
It is recommended to install it at system level with:

    $ cd choqok-src-root-dir [It's choqok-VERSION]
    $ mkdir build
    $ cd build
    $ cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
    $ make
    $ sudo make install

As mentioned in README