Skip to content
Commits on Source (7)
21-Jan-2019 Package 3.0-4
21-Jan-2019 suppress compiler warnings for unused variables
29-Mar-2014 Package (somewhat belatedly) 3.0-3
01-May-2012 local.c: only #include <in.h> if NETWORK_BYTEORDER
Makefile: but don't define NETWORK_BYTEORDER for linux
......
......@@ -7,7 +7,7 @@ shared by all platforms.
User configurable options are contained in two files:
Makefile.template select or deselect TIFF support, etc
1) Make sure the development version of any necessaary support libraries are
1) Make sure the development version of any necessary support libraries are
installed. This primarily means libgd, which is used to produce png and jpeg
files. If you want to build in support for direct tiff output then you also
need libtiff.
......
Most recent change: 26-Mar-2011
Most recent change: 21-Jan-2019
The file Raster3D_3.0-2.tar.gz contains the full source distribution for
The file Raster3D_3.0-4.tar.gz contains the full source distribution for
version 3.0 of Raster3D.
See CHANGELOG for a history of changes to the package.
Basically nothing has changed since verison 3.0-3 (2014) except that I
tried to suppress some harmless compiler warnings.
Note: The programs from Raster3D version 3.0-3 are included in the
CCP4 crystallography suite. You might find it easier to use that
pre-built version.
- In a nutshell, the installation procedure is:
......
VERSION = "3.0-3"
VERSION = "3.0-4"
CHARACTER*8 VERSION
PARAMETER (VERSION='V3.0.3 ')
PARAMETER (VERSION='V3.0.4 ')
......@@ -51,6 +51,8 @@ int ny, nx, nb;
float x_origin, y_origin, x_scale, y_scale;
time_t date;
(void)alpha;
/* Command line options */
for (i=1; i<argc; i++)
{
......
raster3d (3.0-4-1) unstable; urgency=medium
* New upstream version
* debhelper 12
* Standards-Version: 4.4.0
* No override for debian-watch-uses-insecure-uri
-- Andreas Tille <tille@debian.org> Fri, 12 Jul 2019 23:35:22 +0200
raster3d (3.0-3-5) unstable; urgency=medium
[ Piper McCorkle ]
......
......@@ -3,13 +3,13 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Andreas Tille <tille@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~),
Build-Depends: debhelper (>= 12~),
gfortran,
libgd-dev,
libjpeg-dev,
libpng-dev,
libtiff-dev
Standards-Version: 4.2.1
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/med-team/raster3d
Vcs-Git: https://salsa.debian.org/med-team/raster3d.git
Homepage: http://www.bmsc.washington.edu/raster3d/raster3d.html
......
# Upstream only supports http
raster3d source: debian-watch-uses-insecure-uri line*
......@@ -697,6 +697,10 @@ int addlabel_(fontname, fontsize, fontscale, fontalign, xp, yp, zp, red, grn, bl
out_size = trimwhitespace(instring, 128, labelstring);
string = instring;
(void)out_size; /* prevents compiler complaints */
(void)last_z; /* about unused variables */
(void)justify;
/* Allocate colours */
/* FIXME: how to pass non-zero alpha value? */
font_color = gdImageColorAllocateAlpha(label_img,
......