I have installed your ebuild from your website for GigEdit. It compiles
fine but fails to link libraries.

To quote my friend Andrew who walked through this with me:

<quote>
It is failing on the install stage because you are building in a sand
box. So when you are linking you need to link from within your build
root and then install.

It is linking against /usr/lib64 but the plugin is in the sandbox and
not installed yet.

So when linking link to the libgigedit you just built in the sandbox
instead of counting on the lib being in /usr/lib64

something like this in the build string would help:

-L../gigedit -lgigedit


or

-L$(DESTDIR)/usr/lib64/gigedit -lgigedit

instead of this:

-L/usr/lib64/gigedit -lgigedit

</quote>

I hope this can help. I don't think this will be Gentoo specific.



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Linuxsampler-devel mailing list
Linuxsampler-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxsampler-devel

Reply via email to