Bug#560173: xscreensaver-data-extra package: bsod screensaver missing

2009-12-09 Thread Massimo Gagliasso
Package: xscreensaver-data-extra

Version: 5.10-4

Debian Sid


Regards

MG



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#515728: shared-mime-info: lost file association in gnome/nautilus

2009-02-19 Thread Massimo Gagliasso
Hi,

I'd prefer not to install pkgs coming from experimental 2.24 'cause I
would mess up sid as you stated.
I've no problem to wait for gnome 2.24 in unstable, hoping to see it soon.

Regards

Massimo G.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#515728: shared-mime-info: lost file association in gnome/nautilus

2009-02-18 Thread Massimo Gagliasso
Hi Emilio,

my debian sid has libglib2.0-0 ver 2.18.4-2 and 0.40-1 didn't work.


Thanks



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#515728: shared-mime-info: lost file association in gnome/nautilus

2009-02-18 Thread Massimo Gagliasso
Hi,
ver. 0.40-1 doesn't work. Just reinstalled 0.30-3 you've provided and
all is fine.

Thanks



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#515728: shared-mime-info: lost file association in gnome/nautilus

2009-02-18 Thread Massimo Gagliasso
Hi,
0.30-3 works.
So it seems to be the new upstream release. I've put shared-mime-info on hold.

When 0.51-x version will work?

Thanks



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#515728: shared-mime-info: lost file association in gnome/nautilus

2009-02-18 Thread Massimo Gagliasso
Confirmed,
after running the cp the problem persists.
Version 0.30-2 works.

Regards



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#515728: shared-mime-info: lost file association in gnome/nautilus

2009-02-17 Thread Massimo Gagliasso
Hi, I've the same problem.
Please, can you upload also i386 version of 0.51-3 package?

Thanks

M. Gagliasso



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org



Bug#441071: Package libGLU1-mesa breaks compi-fusion's expo plugin

2007-09-06 Thread Massimo Gagliasso
Sorry. I was wrong!!
I've just retested : with version 7.0.1-1 it works. I didn't restarted my
gnome session.
Of course I get other strange behaveoiurs due to different libGLU1-mesa
version.


To compile the test program I attached you have to install freeglut3-dev and
link with -lglut .

Max


> Can you try 6.5.3 now?
> http://snapshot.debian.net/archive/2007/05/22/debian/pool/main/m/mesa/
>
> > Maybe should I wait for Mesa 7.0.2 release?
>
> 6.5.2 is still available from
> http://snapshot.debian.net/archive/2007/07/11/debian/pool/main/m/mesa/
> in the meantime.
>
> Since you provided a program to reproduce, we should be able to locate
> which commit broke this (with git-bisect between 6.5.2 and 6.5.3 or
> 6.5.3 and 7.0.1 depending on your reply to the first question).
>
> Brice
>
>


Bug#441071: Package libGLU1-mesa breaks compi-fusion's expo plugin

2007-09-06 Thread Massimo Gagliasso
Just downgraded the package libglu1-mesa to 7.0.1-1. Still doesn't work.
Maybe should I wait for Mesa 7.0.2 release?

Max


2007/9/6, Brice Goglin <[EMAIL PROTECTED]>:
>
> Massimo Gagliasso wrote:
> > Package: libglu1-mesa
> >   Version: 7.0.1-2
> >
> >   Windows drag&drop inside compiz-fusion's expo plugin doesn't work
> anymore since I updated libglu1-mesa from 6.5.2 to 7.0.1 .
> >
> > Now moving windows inside expo plugin's viewports doesn't work.
> >
>
> Could you try with libglu1-mesa 7.0.1-1? It is available at
> http://snapshot.debian.net/archive/2007/08/10/debian/pool/main/m/mesa/
>
> We have found one big bug in 7.0.1-2 (see #440137) and it will be fixed
> in Mesa 7.0.2.
>
> Brice
>
>


Bug#441071: Package libGLU1-mesa breaks compi-fusion's expo plugin

2007-09-06 Thread Massimo Gagliasso
Package: libglu1-mesa
  Version: 7.0.1-2

  Windows drag&drop inside compiz-fusion's expo plugin doesn't work
anymore since I updated libglu1-mesa from 6.5.2 to 7.0.1 .

Now moving windows inside expo plugin's viewports doesn't work.

libGLU doesn't give expected results as debugged by a compiz-fusion developer.

Attached you can find a simple program (test1.c) provided by the
compiz-fusion developer used to detect the problem.


  I am using Debian GNU/Linux 2.6, kernel 2.6.22+9
  and libc6 2.6.1-2
#include 
#include 
#include 
#include 
#include 

void display(void)
{
   glClear(GL_COLOR_BUFFER_BIT);
   glFlush();
}

void reshape(int w, int h)
{
   glViewport (0, 0, (GLsizei) w, (GLsizei) h);
   glMatrixMode(GL_PROJECTION);
   glLoadIdentity();
   gluPerspective (45.0, (GLfloat) w/(GLfloat) h, 1.0, 100.0);
   glMatrixMode(GL_MODELVIEW);
   glLoadIdentity();
}

void mouse(int button, int state, int x, int y) 
{
   GLint viewport[4];
   GLdouble mvmatrix[16], projmatrix[16];
   GLint realy;  /*  OpenGL y coordinate position  */
   GLdouble wx, wy, wz;  /*  returned world x, y, z coords  */
   GLdouble rx, ry, rz;

   switch (button) {
  case GLUT_LEFT_BUTTON:
 if (state == GLUT_DOWN) {
glGetIntegerv (GL_VIEWPORT, viewport);
glGetDoublev (GL_MODELVIEW_MATRIX, mvmatrix);
glGetDoublev (GL_PROJECTION_MATRIX, projmatrix);
/*  note viewport[3] is height of window in pixels  */
realy = viewport[3] - (GLint) y - 1;
printf ("Coordinates at cursor are (%4d, %4d)\n", 
   x, realy);
gluUnProject ((GLdouble) x, (GLdouble) realy, 0.0,
   mvmatrix, projmatrix, viewport, &wx, &wy, &wz);
printf ("World coords at z=0.0 are (%f, %f, %f)\n",
   wx, wy, wz);
	gluProject (wx, wy, wz, mvmatrix, projmatrix, viewport,
			&rx, &ry, &rz);
	printf ("Real coordinates (projected) are (%f %f %f)\n",
		rx, ry, rz);
gluUnProject ((GLdouble) x, (GLdouble) realy, 1.0,
   mvmatrix, projmatrix, viewport, &wx, &wy, &wz);
printf ("World coords at z=1.0 are (%f, %f, %f)\n", 
   wx, wy, wz);
 }
 break;
  case GLUT_RIGHT_BUTTON:
 if (state == GLUT_DOWN)
exit(0);
 break;
  default:
 break;
   }
}

int main(int argc, char** argv)
{
   glutInit(&argc, argv);
   glutInitDisplayMode (GLUT_SINGLE | GLUT_RGB);
   glutInitWindowSize (500, 500); 
   glutInitWindowPosition (100, 100);
   glutCreateWindow (argv[0]);
   glutDisplayFunc(display); 
   glutReshapeFunc(reshape); 
   glutMouseFunc(mouse);
   glutMainLoop();
   return 0;
}


Bug#419540: compiz-gtk and compiz-gnome dependencies broken

2007-04-16 Thread Massimo Gagliasso

Package: compiz-gtk
Version: 0.2.2-1

After running the latest apt-get update and apt-get dist-upgrade, compiz is
missing gtk window decorator.
Investigating further compiz-gtk and compiz-gnome dependencies are broken.
In details the upgrade of package libmetacity0 to version 2.18.2-2 has
caused the removal of compiz-gtk and compiz-gnome packages.

This is what I get if I try to install compiz-gtk:

*apt-get -s install compiz-gtk
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.*

*Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation: *

*The following packages have unmet dependencies:
 compiz-gtk: Depends: libmetacity0 (>= 1:2.14) but it is not going to be
installed
E: Broken packages*
I'm using Debian GNU/Linux 2.6, kernel 2.6.18-4-686 unstable.

Best regards
M. Gagliasso