It is currently Fri Sep 25, 2026 2:15 am


All times are UTC - 5 hours [ DST ]



Post new topic Reply to topic  [ 28 posts ]  Go to page Previous  1, 2
Author Message
 Post subject: Re: Gimp-Gap for Linux.
PostPosted: Mon Sep 09, 2013 3:07 pm  (#21) 
Offline
GimpChat Member

Joined: Mar 04, 2011
Posts: 2615
Do not forget that there are a couple of scripts in the package as well.

/usr/share/gimp/2.0/scripts/gap-dup-continue.scm
/usr/share/gimp/2.0/scripts/sel-to-anim-img.scm

On the subject of location, I had it running one time from ~/gimp-x.x.x since I only use GAP once-in-a-blue moon for very limited purposes. From memory it worked ok.

Add the directory location to the gimp plugins locations.

Just noticed the size of samj's installation..wow


Top
 Post subject: Re: Gimp-Gap for Linux.
PostPosted: Mon Sep 09, 2013 3:13 pm  (#22) 
Offline
GimpChat Member
User avatar

Joined: Nov 09, 2011
Posts: 726
Oh, rich2005 is right, you should also copy them in your /home gimp folder, or from "/usr/share/gimp/2.0/scripts/" to "/usr/local/share/gimp/2.0/scripts/" if you copy from the debian package.

Just I realize the size has samj's file. Why is it so big? The debian package gimp-gap has only ~4MB. What I'm missing?

Sorry, I'm with a bad internet connection. I can not download it and check it myself :mrgreen:

_________________
Image
Be patient, English is not my language.


Top
 Post subject: Re: Gimp-Gap for Linux.
PostPosted: Mon Sep 09, 2013 3:41 pm  (#23) 
Offline
GimpChat Founder
User avatar

Joined: May 22, 2008
Posts: 5241
Location: Gimpville
You guys are right. I didn't notice how large the plug-ins are. Perhaps rather than using shared libs, the full libs were statically linked to the plug-ins. That's the only thing I can think of that would have generated such large plug-in file sizes.

Also, good point about the scripts. They are not included in Sam's zip.

_________________
“If you reach for the stars, you just might land on a decently sized hill.” - Stuart Hill


Top
 Post subject: Re: Gimp-Gap for Linux.
PostPosted: Mon Sep 09, 2013 4:44 pm  (#24) 
Offline
GimpChat Member

Joined: Apr 12, 2010
Posts: 5870
True but the 2 scripts are trivial to install
Now i don't have at hand but i may search and zip , may be installed as any other script (ie moved in a gimp script folder )

PS thinking better i have somewhere a large "animation" script folder with that and many other animation script , all should still work fine but a few may have recent updates that i may have missed

Anyway if somebody think useful i may search and upload ...

_________________
My 3D Gallery on Deviantart http://photocomix2.deviantart.com/
Main gallery http://www.flickriver.com/photos/photocomix-mandala/
Mandala and simmetry http://www.flickriver.com/photos/photocomix_mandala/

Image

Mrs Wilbress


Top
 Post subject: Re: Gimp-Gap for Linux.
PostPosted: Mon Sep 09, 2013 5:42 pm  (#25) 
Offline
GimpChat Member

Joined: May 09, 2012
Posts: 914
@GnuTux
...the full libs were statically linked to the plug-ins. That's the only thing I can think of that would have generated such large plug-in file sizes.
This is true :)

*****

For translations, I think we should unpack as indicated in my previous post.
To obtain :
/gimp-gap-64bit-20130909/share/locale

It is not necessary to move the plug-ins. It is possible to declare this directory in Gimp preferences for the user who wants to use them.


Top
 Post subject: Re: Gimp-Gap for Linux.
PostPosted: Tue Sep 10, 2013 4:16 am  (#26) 
Offline
GimpChat Founder
User avatar

Joined: May 22, 2008
Posts: 5241
Location: Gimpville
Caz wrote:
I run make I end up with this message

/usr/bin/ld: ../libgapbase/libgapbase.a(gap_base.o): undefined reference to symbol 'exp@@GLIBC_2.2.5'
/usr/bin/ld: note: 'exp@@GLIBC_2.2.5' is defined in DSO /lib/x86_64-linux-gnu/libm.so.6 so try adding it to the linker command line
/lib/x86_64-linux-gnu/libm.so.6: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status
make[2]: *** [gap_blend_fill] Error 1
make[2]: Leaving directory `/home/caz/Desktop/gimp-gap-master/gap'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/caz/Desktop/gimp-gap-master'
make: *** [all] Error 2

Ran across this same message during my compilation attempt. The fix is to start with a clean source folder. I used the one included in the zip posted by samj: gimp-gap-src-20130909

After running ./autogen.sh (as regular user), edit Makefile in the gap folder.

Locate..
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@

Replace with..
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) -lm $(AM_LDFLAGS) $(LDFLAGS) -o $@

Save Makefile.

From the folder: gimp-gap-src-20130909 , run make (as regular user).

Assuming that it compiles clean, with no errors, you can run "make install", as root, from the folder: gimp-gap-src-20130909

_________________
“If you reach for the stars, you just might land on a decently sized hill.” - Stuart Hill


Top
 Post subject: Re: Gimp-Gap for Linux.
PostPosted: Tue Sep 10, 2013 12:35 pm  (#27) 
Offline
GimpChat Member

Joined: Dec 27, 2012
Posts: 393
Location: England
Thanks for all the help and advice everyone, it's real good of you all :bigthup
I decided to go with what for me seemed the easiest solution, I can get pretty lost with all the command line stuff, and added the location of the Gap plug-ins, which are already installed on my system, to Gimp preferences, as suggested by Rich2005. I also checked to see if the other Gap files were where they're suppose to be and they are. I restarted Gimp and Gap is now working. The video tab appears at the top of Gimp's window and everything that should be listed under it is.
It's a bit of a mystery as to why Gap's plug-ins end up in the wrong location after installing via synaptic, but I thought it best to leave them where they are as everything now works.
Gimp and Linux, it can be frustrating but it's never boring. :paint

_________________
Image

DeviantArt gallery


Top
 Post subject: Re: Gimp-Gap for Linux.
PostPosted: Tue Sep 10, 2013 12:43 pm  (#28) 
Offline
GimpChat Member
User avatar

Joined: Apr 07, 2010
Posts: 14182
You got that right Caz. :teeth

_________________
Image


Top
Post new topic Reply to topic  [ 28 posts ]  Go to page Previous  1, 2

All times are UTC - 5 hours [ DST ]



* Login  



Powered by phpBB3 © phpBB Group