Page 1 of 1

two versions installed?

Posted: Thu Jul 28, 2016 8:19 am
by leigh
Hi
Great app, thanks and so glad its still going :)
I previously built from git and installed (following instructions, no idea what I was doing)
All fine
Today found I found
http://guayadeque.org/index.php?p=/disc ... ts-#Item_2
and installed from launchpad ppa:anonbeat/guayadeque

Now I have two versions of Guayadeque simultaneously installed, but I vant work out how to remove one (the 'remove' button in Ubuntu Software does nothing (and I guess the one I need to remove is the git installed one?)

Can you help me please?

Ubuntu 16.04 64

Thanks!

two versions installed?

Posted: Thu Jul 28, 2016 10:09 am
by anonbeat
If you installed the git one using with last step 'sudo make install' then the package one overwrote the files installed with the build from source process so now you only have the package one installed.
You can find out if more than one binary is installed using 'which guayadeque'

Regards
JRios

two versions installed?

Posted: Sun Jul 31, 2016 4:39 pm
by leigh
Thanks,
I did use sudo make install but I did all that in a new directory 'guayadeque' I made under my home directory.

when I used 'which guayadeque' it gave '/usr/bin/guayadeque' (from the package I guess) but there is also another guayadeque binary in the new directory in my home directory (from git build?).
(I did try 'which -a guayadeque' but it still only found the bin one)

Anyways, I guess what I want to do is get rid of the git one from the home/guayadeque directory.
How do I do this?
Can I simply delete this directory?

As you can tell, I am out of my depth here, but I am really enjoying learning :)
Thanks again
Leigh

two versions installed?

Posted: Sun Jul 31, 2016 11:53 pm
by anonbeat
you can simply delete the guayadeque folder from the home without any problem...

two versions installed?

Posted: Wed Aug 10, 2016 3:50 am
by leigh
Thanks!
All done.
Just love the player.
Got a Raspberry Pi for my dad's 75th on the wekend as his first computer. He has found his way round Guayadeque already so it must score well on "intuitiveness" :)

two versions installed?

Posted: Wed Aug 10, 2016 12:11 pm
by leigh
Hi

Which is the current version of Guayadeque?

I have installed using:
sudo add-apt-repository ppa:anonbeat/guayadeque
sudo apt-get update
sudo apt-get install guayadeque

But now I am trying to build from git to see if it is a newer version and I cant get it to work:

I follow these steps:

sudo apt-get install libwxgtk3.0-dev libtag1-dev libwxsqlite3-3.0-dev libsqlite3-dev

sudo apt-get install libcurl4-gnutls-dev libdbus-1-dev libgstreamer1.0-dev libgpod-dev libindicate-dev

cd folder_where_to_create_the_program

git clone https://github.com/anonbeat/guayadeque.git

cd guayadeque

./build

sudo make install

But after ./build I get the following

mv: cannot stat 'guayadeque.pot': No such file or directory
rm: cannot remove 'CMakeCache.txt': No such file or directory
-- The C compiler identification is GNU 5.4.0
-- The CXX compiler identification is GNU 5.4.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Using install prefix /usr ...
-- Found PkgConfig: /usr/bin/pkg-config (found version "0.29.1")
-- Found wxWidgets: -L/usr/lib/x86_64-linux-gnu;-pthread;;;-lwx_baseu-3.0;-lwx_gtk2u_core-3.0;-lwx_gtk2u_adv-3.0;-lwx_baseu_net-3.0;-lwx_gtk2u_html-3.0;-lwx_baseu_xml-3.0;-lwx_gtk2u_aui-3.0;-lwx_gtk2u_qa-3.0 (found version "3.0.2")
-- Checking for module 'gstreamer-1.0'
-- Found gstreamer-1.0, version 1.8.2
-- Checking for module 'gstreamer-tag-1.0'
-- No package 'gstreamer-tag-1.0' found
CMake Error at /usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:367 (message):
A required package was not found
Call Stack (most recent call first):
/usr/share/cmake-3.5/Modules/FindPkgConfig.cmake:532 (_pkg_check_modules_internal)
CMakeLists.txt:34 (PKG_CHECK_MODULES)


-- Configuring incomplete, errors occurred!

two versions installed?

Posted: Wed Aug 10, 2016 4:57 pm
by anonbeat
You should have guayadeque.pot into po folder... please can you email me the complete build log so I can check what is going wrong ?

two versions installed?

Posted: Thu Aug 11, 2016 10:29 am
by leigh
Sent it,
thanks

two versions installed?

Posted: Thu Aug 11, 2016 12:23 pm
by anonbeat
@leigh: the problem is this 'No package 'gstreamer-tag-1.0' found'

In ubuntu you need to install libgstreamer-plugins-base1.0-dev

Please try with something similar in your distro and check again

two versions installed?

Posted: Thu Aug 11, 2016 2:01 pm
by leigh
great, it worked.
I am on Ubuntu 16.04 and used install libgstreamer-plugins-base1.0-dev
thanks a lot!