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
Search Criteria
Package Details: gdis-cvs 20130319-1
Package Actions
| 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: | |
| Submitter: | pie86 |
| Maintainer: | pie86 |
| Last Packager: | None |
| Votes: | 1 |
| First Submitted: | 2011-05-24 11:49 |
| Last Updated: | 2013-03-19 11:31 |
Latest Comments
Comment by tdaff
Comment by pie86
Thanks! Package updated!
Anonymous comment
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
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