On Wed, 06 Mar 2013 10:08:07 +0000 p-0'0-h the cat wrote:
> Read all about it!
> http://gimpmagazine.org/issue3/
What did I do wrong?
That very pretty magazine had a great article on GMIC.
So I tried to install GMIC - but failed.
What's the next step in installing the GMIC gimp plugin?
After reading the article, I downloaded GMIC gmic_1.5.4.1.tar.gz from
http://sourceforge.net/projects/gmic/?source=directory
I extracted to create a gmic-1.5.4.0 directory using this sequence:
$ gunzip gmic_1.5.4.0.tar.gz
$ tar xvf gmic_1.5.4.0.tar
$ view gmic-1.5.4.0/README
To install the G'MIC plug-in for GIMP, you have to copy
the file 'gmic_gimp' (Unix) to the plug-in folder of
your GIMP installation.
$ sudo updatedb; locate plug-ins|grep gimp
/home/usr1/.gimp-2.6/plug-ins
/home/usr/lib64/gimp/2.0/plug-ins
$ ls -ld /home/usr1/.gimp-2.6/plug-ins
drwxr-xr-x. 22 usr1 usr1 4096 Mar 6 06:01 /home/usr1/.gimp-2.6/
$ vi ./gmic-1.5.4.0/src/Makefile
CHANGE FROM:
# PLUGINDIR = `gimptool-2.0 --gimpplugindir`/plug-ins
CHANGE TO:
PLUGINDIR = `/home/usr1/.gimp-2.6`/plug-ins
$ cd ./gmic-1.5.4.0/src/
$ make install
mkdir -p `/home/usr1/.gimp-2.6`/plug-ins/
/bin/sh: /home/usr1/.gimp-2.6: is a directory
mkdir: cannot create directory `/plug-ins/': Permission denied
make: *** [install] Error 1
$ vi ./gmic-1.5.4.0/src/Makefile
CHANGE FROM:
PLUGINDIR = `/home/usr1/.gimp-2.6`/plug-ins
CHANGE TO:
PLUGINDIR = `/tmp`/plug-ins
$ make install
mkdir -p `/tmp`/plug-ins/
/bin/sh: /tmp: is a directory
mkdir: cannot create directory `/plug-ins/': Permission denied
make: *** [install] Error 1
Does anyone else see these errors on Linux?