Control: tag -1 + pending Resolutions proposed for wheezy, Release Team contacted, see bug #694322 [1].
A simple patch addressing this bug in wheezy is attached at #694322. Laszlo [1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=694322
diff -u rgl-0.92.798/debian/changelog rgl-0.92.798/debian/changelog --- rgl-0.92.798/debian/changelog +++ rgl-0.92.798/debian/changelog @@ -1,3 +1,14 @@ +rgl (0.92.798-1+deb7u1) wheezy; urgency=low + + * Non-maintainer upload. + * Added lintian override found in 0.92.894-1 for error 'r-cran-rgl: + embedded-library usr/lib/R/site-library/rgl/libs/rgl.so: gl2ps'. + * FTBFS: types.h:98:5: error: 'copy' was not declared in this scope, and no + declarations were found by argument-dependent lookup at the point of + instantiation [-fpermissive] (Closes: #684810). + + -- Laszlo Kajan <lka...@rostlab.org> Sun, 25 Nov 2012 13:08:19 +0000 + rgl (0.92.798-1) unstable; urgency=low * New upstream release diff -u rgl-0.92.798/debian/r-cran-rgl.lintian-overrides rgl-0.92.798/debian/r-cran-rgl.lintian-overrides --- rgl-0.92.798/debian/r-cran-rgl.lintian-overrides +++ rgl-0.92.798/debian/r-cran-rgl.lintian-overrides @@ -1,6 +1,7 @@ r-cran-rgl: duplicate-font-file usr/lib/R/site-library/rgl/fonts/FreeMono.ttf also in ttf-freefont r-cran-rgl: duplicate-font-file usr/lib/R/site-library/rgl/fonts/FreeSans.ttf also in ttf-freefont r-cran-rgl: duplicate-font-file usr/lib/R/site-library/rgl/fonts/FreeSerif.ttf also in ttf-freefont +r-cran-rgl: embedded-library usr/lib/R/site-library/rgl/libs/rgl.so: gl2ps r-cran-rgl: image-file-in-usr-lib usr/lib/R/site-library/rgl/textures/bump_dust.png r-cran-rgl: image-file-in-usr-lib usr/lib/R/site-library/rgl/textures/nightfire.png r-cran-rgl: image-file-in-usr-lib usr/lib/R/site-library/rgl/textures/particle.png only in patch2: unchanged: --- rgl-0.92.798.orig/src/types.h +++ rgl-0.92.798/src/types.h @@ -6,7 +6,7 @@ // C++ header file // This file is part of RGL // -// $Id: types.h 494 2006-08-01 17:25:31Z dmurdoch $ +// $Id: types.h 880 2012-05-08 11:54:12Z murdoch $ #include <cstring> @@ -80,6 +80,16 @@ }; // +// mem copy +// + +template<class A, class B> +inline void copy(A* from, B* to, int size) +{ + memcpy( (void*) to, (const void*) from, size*sizeof(A) ); + } + +// // TEMPLATE // ARRAY // @@ -105,16 +115,6 @@ }; // -// mem copy -// - -template<class A, class B> -inline void copy(A* from, B* to, int size) -{ - memcpy( (void*) to, (const void*) from, size*sizeof(A) ); -} - -// // cast-copy doubles to floats // only in patch2: unchanged: --- rgl-0.92.798.orig/debian/compat +++ rgl-0.92.798/debian/compat @@ -0,0 +1 @@ +5