After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 656585 - <FileName>.ui and INSTALL not created in a new project
<FileName>.ui and INSTALL not created in a new project
Status: RESOLVED FIXED
Product: anjuta
Classification: Applications
Component: plugins: project-manager
3.0.x
Other Linux
: Normal normal
: ---
Assigned To: Naba Kumar
Anjuta maintainers
Depends on:
Blocks:
 
 
Reported: 2011-08-15 14:30 UTC by Vikash Agrawal
Modified: 2011-08-24 19:57 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Vikash Agrawal 2011-08-15 14:30:15 UTC
Hello Everyone,
I am trying to do the Guitar-Tuner example from http://developer.gnome.org/gnome-devel-demos/unstable/guitar-tuner.py.html.en

I made a new project and selected gst and gstreamer as extra packages,

now when I click on .ui file or the INSTALL files in src I get pop ups, like file now found,

what should I do?
Comment 1 Johannes Schmid 2011-08-16 04:40:49 UTC
Could e a bug in the project-manager (not sure, please update to 3.0.3). You can switch to the "Files" tab to open the files instead.
Comment 2 Sébastien Granjoux 2011-08-23 17:48:42 UTC
There is a fix done in Anjuta 3.0.3 on the pygtk template used by the Guitar-Tuner example.

The path of the guitar_tuner.ui was wrong. Could you edit the file src/Makefile.am and replace:
  uidir = $(datadir)/guitar_tuner/ui
  ui_DATA = ../data/guitar_tuner.ui
by
  uidir = $(datadir)/guitar_tuner/ui
  ui_DATA = guitar_tuner.ui

Then you should be able to open the .ui file, could you check?


The INSTALL file is missing indeed, it's not needed to run the program though.
Comment 3 Vikash Agrawal 2011-08-24 08:17:24 UTC
Thanks Sébastien,
It worked, but I a, using fedora15 and unfortunately it still has 3.0.0 :(
If possible can you please have a glance on that possible
Comment 4 Sébastien Granjoux 2011-08-24 19:57:23 UTC
(In reply to comment #3)
> It worked, but I a, using fedora15 and unfortunately it still has 3.0.0 :(
> If possible can you please have a glance on that possible

I don't know how it's working on fedora, perhaps you can report a bug in their database and ask for an update.

Else, this project template is normally installed in
/usr/share/anjuta/project/pygtk/src/Makefile.am.tpl

You can modify directly this file removing "../data/" before guitar_tuner.ui and it will works for all the project you will create later.