Package Details: gdis-cvs 20130319-1

Package Base: gdis-cvs
Description: GDIS is a scientific visualization program for the display, manipulation, and analysis of isolated molecules and periodic structures.
Upstream URL: http://gdis.sourceforge.net/
Category: science
Licenses: GPL
Submitter: pie86
Maintainer: pie86
Last Packager: None
Votes: 1
First Submitted: 2011-05-24 11:49
Last Updated: 2013-03-19 11:31

Dependencies (3)

Required by (0)

Sources

  • gdis.sh
  • makefile

Latest Comments

Comment by tdaff

2014-01-08 15:17

This needs to be updated to compile with libpng 1.6

- sed -i 's/png14/png15/g' makefile
+ sed -i 's/png14/png16/g' makefile

Comment by pie86

2013-03-19 11:31

Thanks! Package updated!

Anonymous comment

2013-03-19 08:09

gdis.sh is problematic too:
1 #!/bin/sh
2 cd /opt/gdis
3 ./gdis

If you try to generate .pov files during rendering gdis will try to write to /opt/gdis/tmp_0/ which will fail due to permissions.

Change to
1 #!/bin/sh
2 /opt/gdis/./gdis

Anonymous comment

2013-03-19 07:20

There's at least one more dependency -- on my system the build failed because it could not link against -lpng14.

The easiest solution would be to make libpng (15) a dependency, and edit the PKGBUILD:

39 cd "$srcdir/$_cvsmod-build"
40
+41 sed -i 's/png14/png15/g' makefile
42 make
43
44