On Wed, Feb 25, 2009 at 11:44:33PM -0600, Nils wrote:
> the ebuild is online at  http://bugs.gentoo.org/show_bug.cgi?id=215399

Hi Nils,

I notice in your ebuild:

src_compile(){
        econf \
                $(use_with boost boost /usr/include) \
                $(use_enable gui) \
                $(use_with gui libtar /usr/lib) \
                $(use_with gui libz /usr/lib) \
                $(use_enable opensync opensync-plugin) \
                || die "Error: econf failed!"
        emake || die "Error: emake failed!"
        
        if use doc ; then
                cd "${S}/src"
                doxygen
        fi
}


The boost line should use "/usr" instead of "/usr/include", since the
configure script will add to the base and create internal strings of
"/usr/include" and "/usr/lib".  Alternatively, you can just use "--with-boost"
without an argument.  This will result in a build that uses the default
linker paths, wherever boost may be.

The way you have it now causes "/usr/include/include" to be added to the
include search path.  This won't harm anything, but might as well be fixed.

- Chris


------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Barry-devel mailing list
Barry-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/barry-devel

Reply via email to