Package Details: gwyddion 2.65-2

Git Clone URL: https://aur.archlinux.org/gwyddion.git (read-only, click to copy)
Package Base: gwyddion
Description: A data visualization and processing tool for scanning probe miscroscopy (SPM, i.e. AFM, STM, MFM, SNOM/NSOM, ...) and profilometry, useful also for general image and 2D data analysis
Upstream URL: http://gwyddion.net/
Licenses: GPL
Submitter: sirocco
Maintainer: sirocco
Last Packager: sirocco
Votes: 28
Popularity: 0.049160
First Submitted: 2008-11-30 12:29 (UTC)
Last Updated: 2024-04-09 06:03 (UTC)

Dependencies (18)

Required by (1)

Sources (2)

Latest Comments

« First ‹ Previous 1 2 3 4 5

<deleted-account> commented on 2012-05-02 11:50 (UTC)

More generally if you encounter this error « error: "Only <glib.h> can be included directly."» on any package, then you can solved it as follow: find . -name "*.h" -exec sed -ir 's/#include <glib[\/\-][^\.]*\.h>/#include <glib.h>/' '{}' \; if this not work, try to add the *.c as well: find . -name "*.[hc]" -exec sed -ir 's/#include <glib[\/\-][^\.]*\.h>/#include <glib.h>/' '{}' \;

<deleted-account> commented on 2012-05-02 11:42 (UTC)

Not working. In case of the following error: In file included from ../libgwyddion/gwyversion.h:24:0, from ../libgwyddion/gwyddion.h:43, from gwyddion.c:22: /usr/include/glib-2.0/glib/gtypes.h:28:2: error: #error "Only <glib.h> can be included directly." Add to your PKGBUILD the following between the ./configure and the make command: # glibc fixes sed -ir 's/#include <glib[\/\-][^\.]*\.h>/#include <glib.h>/' lib{gwyddion/gwy{{ddionenums,md5,expr,version}.h,serializable.c},process/gwyprocessenums.h,draw/gwydrawenums.h,gwydgets/gwy{dgetenums,stock}.h,gwymodule/gwymoduleenums.h} app/{{glmaterial,gradient}-editor,settings,gwymoduleutils-file}.h modules/file/{err,gwytiff}.h

<deleted-account> commented on 2012-02-10 15:12 (UTC)

Not working due to a bug with zlib. Please fix the PKGBUILD as follow: Add those 2 lines before "#python2 fix" # Fix zlib sed -i '40 i#include <zlib.h>' modules/file/pixmap.c