Dear Geany Users and Geany Developers, I'm very glad I can announce that today the geanygdb plugin was released. The release is available for download at [1].
Please note that this is just a maintenance release which includes no new features with it at all. This release is compatible with Geany 0.16. You will need to install this plugin when using Geany 0.16 or higher.
If you have any questions regarding this release feel free to contact me by email at dmaphy@googlemail.com, by the geany developers mailing list or find me at IRC in #geany and #geany-de on chat.freenode.net.
If you find bugs, have feature requests or patches please use the geany-plugins tracker at sourceforge: https://sourceforge.net/projects/geany-plugins/
[1] http://geany-plugins.sourceforge.net/geanygdb/geanygdb-0.0.2.tar.gz
Best Regards, Dominic
I am using svn version and got this: No package 'geany' found when run autogen.sh. Do I have to do something with geany besides make install to register this package?
2009/4/18 Dominic Hopf dmaphy@googlemail.com:
Dear Geany Users and Geany Developers, I'm very glad I can announce that today the geanygdb plugin was released. The release is available for download at [1].
Please note that this is just a maintenance release which includes no new features with it at all. This release is compatible with Geany 0.16. You will need to install this plugin when using Geany 0.16 or higher.
If you have any questions regarding this release feel free to contact me by email at dmaphy@googlemail.com, by the geany developers mailing list or find me at IRC in #geany and #geany-de on chat.freenode.net.
If you find bugs, have feature requests or patches please use the geany-plugins tracker at sourceforge: https://sourceforge.net/projects/geany-plugins/
[1] http://geany-plugins.sourceforge.net/geanygdb/geanygdb-0.0.2.tar.gz
Best Regards, Dominic
-- Dominic Hopf dmaphy@gmail.com
Key Fingerprint: A7DF C4FC 07AE 4DDC 5CA0 BD93 AAB0 6019 CA7D 868D
Geany mailing list Geany@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
On Sat, 18 Apr 2009 18:32:15 +0200, Filip wrote:
I am using svn version and got this: No package 'geany' found when run autogen.sh. Do I have to do something with geany besides make install to register this package?
How/where did you install Geany? The configure script of geanygdb is using pkg-config to find the Geany installation. So, check on the command line with the following command whether your installation is correct: pkg-config --modversion geany
this should return 0.16 or 0.17 or whatever version you have installed :).
If you installed Geany into a custom prefix (that is, != /usr), the you might need to specify the path to the installation dir like
PKG_CONFIG_PATH=/wherever/you/installed/geany/lib/pkgconfig pkg-config --modversion geany
resp. in the geanygdb sources:
PKG_CONFIG_PATH=/wherever/you/installed/geany/lib/pkgconfig ./configure --prefix=/wherever/you/installed/geany
Regards, Enrico
pkg-config returns
Package geany was not found in the pkg-config search path. Perhaps you should add the directory containing `geany.pc' to the PKG_CONFIG_PATH environment variable No package 'geany' found
but geany is installed in /usr/local/bin.
As I have said, I have installed geany from svn.
2009/4/18 Enrico Tröger enrico.troeger@uvena.de:
On Sat, 18 Apr 2009 18:32:15 +0200, Filip wrote:
I am using svn version and got this: No package 'geany' found when run autogen.sh. Do I have to do something with geany besides make install to register this package?
How/where did you install Geany? The configure script of geanygdb is using pkg-config to find the Geany installation. So, check on the command line with the following command whether your installation is correct: pkg-config --modversion geany
this should return 0.16 or 0.17 or whatever version you have installed :).
If you installed Geany into a custom prefix (that is, != /usr), the you might need to specify the path to the installation dir like
PKG_CONFIG_PATH=/wherever/you/installed/geany/lib/pkgconfig pkg-config --modversion geany
resp. in the geanygdb sources:
PKG_CONFIG_PATH=/wherever/you/installed/geany/lib/pkgconfig ./configure --prefix=/wherever/you/installed/geany
Regards, Enrico
-- Get my GPG key from http://www.uvena.de/pub.asc
Geany mailing list Geany@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
On Sat, 18 Apr 2009 18:57:38 +0200, Filip wrote:
pkg-config returns
Package geany was not found in the pkg-config search path. Perhaps you should add the directory containing `geany.pc' to the PKG_CONFIG_PATH environment variable No package 'geany' found
but geany is installed in /usr/local/bin.
Did you try:
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig pkg-config --modversion geany ? If that doesn't work, check whether /usr/local/lib/pkgconfig/geany.pc exists.
As I have said, I have installed geany from svn.
Sorry, I assumed you meant the svn version of geanygdb :).
Regards, Enrico
localhost geanygdb-0.0.2 # PKG_CONFIG_PATH=/usr/local/lib/pkgconfig pkg-config --modversion geany 0.17
When I run ./configure, it returned the same message.
2009/4/18 Enrico Tröger enrico.troeger@uvena.de:
On Sat, 18 Apr 2009 18:57:38 +0200, Filip wrote:
pkg-config returns
Package geany was not found in the pkg-config search path. Perhaps you should add the directory containing `geany.pc' to the PKG_CONFIG_PATH environment variable No package 'geany' found
but geany is installed in /usr/local/bin.
Did you try:
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig pkg-config --modversion geany ? If that doesn't work, check whether /usr/local/lib/pkgconfig/geany.pc exists.
As I have said, I have installed geany from svn.
Sorry, I assumed you meant the svn version of geanygdb :).
Regards, Enrico
-- Get my GPG key from http://www.uvena.de/pub.asc
Geany mailing list Geany@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
On Sat, 18 Apr 2009 19:08:11 +0200, Filip wrote:
localhost geanygdb-0.0.2 # PKG_CONFIG_PATH=/usr/local/lib/pkgconfig pkg-config --modversion geany 0.17
So the installation seems to be fine.
When I run ./configure, it returned the same message.
cd /path/to/sources/geanygdb PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure
should work.
Regards, Enrico
The same result.
2009/4/18 Enrico Tröger enrico.troeger@uvena.de:
On Sat, 18 Apr 2009 19:08:11 +0200, Filip wrote:
localhost geanygdb-0.0.2 # PKG_CONFIG_PATH=/usr/local/lib/pkgconfig pkg-config --modversion geany 0.17
So the installation seems to be fine.
When I run ./configure, it returned the same message.
cd /path/to/sources/geanygdb PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure
should work.
Regards, Enrico
-- Get my GPG key from http://www.uvena.de/pub.asc
Geany mailing list Geany@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
On Sat, 18 Apr 2009 19:25:19 +0200, Filip wrote:
The same result.
Not sure then what's wrong. Did you check config.log for details? Note that errors are not necessarily at the end of the log, often they can be found somewhere in the middle of file, so be careful when reading.
Regards, Enrico
configure:20909: $PKG_CONFIG --exists --print-errors "geany >= 0.15" Package geany was not found in the pkg-config search path. Perhaps you should add the directory containing `geany.pc' to the PKG_CONFIG_PATH environment variable No package 'geany' found configure:20912: $? = 1 No package 'geany' found configure:20949: error: Package requirements (geany >= 0.15) were not met:
No package 'geany' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix.
Alternatively, you may set the environment variables GEANY_CFLAGS and GEANY_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.
I tried running:
localhost geanygdb-0.0.2 # pkg-config --exists --print-errors "geany >= 0.15" Package geany was not found in the pkg-config search path. Perhaps you should add the directory containing `geany.pc' to the PKG_CONFIG_PATH environment variable No package 'geany' found
I tried it all:
localhost geanygdb-0.0.2 # cat /usr/local/lib/pkgconfig/geany.pc prefix=/usr/local exec_prefix=${prefix} libdir=${exec_prefix}/lib includedir=${prefix}/include datarootdir=${prefix}/share datadir=${datarootdir} localedir=${datarootdir}/locale
Name: Geany Description: A fast and lightweight IDE using GTK2 Requires: gtk+-2.0 >= 2.8.0 Version: 0.17 Libs: -L${libdir} Cflags: -I${includedir}/geany -I${includedir}/geany/tagmanager -I${includedir}/geany/scintilla
localhost geanygdb-0.0.2 # PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
localhost geanygdb-0.0.2 # pkg-config --exists --print-errors "geany >= 0.15" Package geany was not found in the pkg-config search path. Perhaps you should add the directory containing `geany.pc' to the PKG_CONFIG_PATH environment variable No package 'geany' found
2009/4/18 Enrico Tröger enrico.troeger@uvena.de:
On Sat, 18 Apr 2009 19:25:19 +0200, Filip wrote:
The same result.
Not sure then what's wrong. Did you check config.log for details? Note that errors are not necessarily at the end of the log, often they can be found somewhere in the middle of file, so be careful when reading.
Regards, Enrico
-- Get my GPG key from http://www.uvena.de/pub.asc
Geany mailing list Geany@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany
On Sat, 18 Apr 2009 20:03:19 +0200, Filip wrote:
I tried running:
localhost geanygdb-0.0.2 # PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
localhost geanygdb-0.0.2 # pkg-config --exists --print-errors "geany
= 0.15"
You must specify the PKG_CONFIG_PATH on the same line as the pkg-config/./configure command:
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure
(the above must be one line)
Or alternatively, make it available for this shell using:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
and then run again: ./configure
Regards, Enrico
It worked. Thanks a lot :-) I am sitting down to test it now :-)
2009/4/18 Enrico Tröger enrico.troeger@uvena.de:
On Sat, 18 Apr 2009 20:03:19 +0200, Filip wrote:
I tried running:
localhost geanygdb-0.0.2 # PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
localhost geanygdb-0.0.2 # pkg-config --exists --print-errors "geany
= 0.15"
You must specify the PKG_CONFIG_PATH on the same line as the pkg-config/./configure command:
PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure
(the above must be one line)
Or alternatively, make it available for this shell using:
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
and then run again: ./configure
Regards, Enrico
-- Get my GPG key from http://www.uvena.de/pub.asc
Geany mailing list Geany@uvena.de http://lists.uvena.de/cgi-bin/mailman/listinfo/geany