[Bug 208505] New: gscmxx not working
https://bugzilla.novell.com/show_bug.cgi?id=208505 Summary: gscmxx not working Product: openSUSE 10.2 Version: Alpha 4 plus Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: Other AssignedTo: bnc-team-screening@forge.provo.novell.com ReportedBy: felix@derklecks.de QAContact: qa@suse.de I just tried to run gscmxx but it does not work. It gives: felix@vaio-gr214mp:~> gscmxx Can't locate Gtk.pm in @INC (@INC contains: /usr/lib/perl5/5.8.8/i586-linux-thread-multi /usr/lib/perl5/5.8.8 /usr/lib/perl5/site_perl/5.8.8/i586-linux-thread-multi /usr/lib/perl5/site_perl/5.8.8 /usr/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/5.8.8/i586-linux-thread-multi /usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl . /usr/bin/../SCMxx /usr//lib/perl5/site_perl/5.8.8 /usr//lib/perl5/vendor_perl/5.8.8) at /usr/bin/gscmxx line 196. BEGIN failed--compilation aborted at /usr/bin/gscmxx line 196. For it seems like there is just a gtk2 package for perl and not a gtk1 one. So is gscmxx not working at all? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 cthiel@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|bnc-team- |kssingvo@novell.com |screening@forge.provo.novell| |.com | -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 kssingvo@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED ------- Comment #1 from kssingvo@novell.com 2006-10-16 01:51 MST ------- yes, it seems very likely to be the problem. As I'm coming back from summer holidays today, I'm overwhelmed with work. I'll come back to this issue as soon as time and priority permits. Thanks for understanding. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 kssingvo@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |NEEDINFO Info Provider| |anicka@novell.com ------- Comment #2 from kssingvo@novell.com 2006-11-09 10:09 MST ------- I worked now several days on porting gscmxx from gtk to gtk2, but stuck again and again. The bad news is, that gtk2 is so different from gtk, that it's impossible to port it fast (by replacing a few things only). A deeper gtk2 knowledge is mandatory, which I don't have. The porting guide "gtk to gtk2" doesn't help here neither, as I run so often into undocumented exceptions. I'm giving up... If the perl-Gtk2 maintainer can't help here, I fear I need to fill out a drop request for the package. ==> NEEDINFO to anicka@novell.com if you can do the porting or know a person who can do? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 anicka@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Info Provider|anicka@novell.com |sbrabec@novell.com ------- Comment #3 from anicka@novell.com 2006-11-09 10:20 MST ------- I know a person who could help you... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 sbrabec@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sbrabec@novell.com ------- Comment #4 from sbrabec@novell.com 2006-11-09 11:49 MST ------- GTK1 support was removed from SuSE gtk-perl packages. gtk1 and gtk2 are not so different, but some widgets are missing, some are new or changed and there are more other changes. For C programs I wrote gtk1-compat-devel, which covers simpler part of it. What is exactly your problem? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 ------- Comment #5 from kssingvo@novell.com 2006-11-09 16:56 MST ------- How is this one converted... gscmxx, line 5115: @states = qw(normal insensitive active prelight); $styles{default} = new Gtk::Style; foreach (@states) { $styles{default}->base($_, $colors{background}); $styles{default}->bg($_, $colors{background}); $styles{default}->text($_, $colors{background}); $styles{default}->light($_, $colors{background}); $styles{default}->mid($_, $colors{background}); $styles{default}->dark($_, $colors{background}); }; gscmxx, line 5088: my $font = Gtk::Gdk::Font->load( $fontnames{$_} ) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 ------- Comment #6 from sbrabec@novell.com 2006-11-10 04:52 MST ------- Oh yes. The style code is different in GTK2. If styles are not substantial for your application, you can comment out any style related code for an easy port. If you want to be precise, you have to use new style code: gtk_widget_modify_bg() etc. New gtk discloses much less internal structures and prefers changing of attributes by functions (because it allows to change internals without breaking API). You can consult your changes with devhelp+gtk2-doc and look at gtk1-compat-devel package for some easy "porting" changes. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 kssingvo@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Info Provider|sbrabec@novell.com | Resolution| |LATER ------- Comment #7 from kssingvo@novell.com 2006-11-16 06:16 MST ------- package removed from next SuSE Linux version. will work on it later, when I have more time to do so -> later. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=208505 User coolo@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=208505#c8 Stephan Kulow <coolo@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|RESOLVED |REOPENED Resolution|LATER | --- Comment #8 from Stephan Kulow <coolo@novell.com> 2008-06-25 03:19:09 MDT --- mass reopening all 10.2 LATER+REMIND bugs. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=208505 User coolo@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=208505#c9 Stephan Kulow <coolo@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |RESOLVED Resolution| |WONTFIX --- Comment #9 from Stephan Kulow <coolo@novell.com> 2008-06-25 03:23:19 MDT --- close all 10.2 LATER/REMIND bugs as WONTFIX. Reopen yourself if you still plan to work on it. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com