| Summary: | recent ebuilds of x11-libs/fox fails to compile - "libtool.m4 and ltmain.sh have a version mismatch!" | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | Dominic Leland <dleland> |
| Component: | [OLD] Library | Assignee: | Ryan Phillips (RETIRED) <rphillips> |
| Status: | RESOLVED NEEDINFO | ||
| Severity: | normal | ||
| Priority: | High | ||
| Version: | 2005.0 | ||
| Hardware: | AMD64 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
Dominic Leland
2005-06-23 23:26:20 UTC
does it fail during configure? It's been a while, but I believe it was during configure that it would fail. It would be checking for all of its dependancies, then it would give me that libtool mismatch. Unfortunately, due to hard drive problems, I've had to reformat. I no longer have Gentoo installed (will probably reinstall this weekend) so I cannot provide any more information about this bug. I had the same problem with an experimental ebuild (nautilus-cd-burner) which
Ifixed by adding:
libtoolize --copy --force
to the src_compile() function. So the new function should probably look
something like this (not tested!!!!)
src_compile() {
local myconf
# Following line closes #61694
CPPFLAGS="$CPPFLAGS -I/usr/include/freetype2" \
econf \
`use_with opengl` \
`use_enable cups` \
`use_enable debug` \
`use_enable tiff` \
`use_enable jpeg` \
`use_enable png` \
`use_enable zlib` \
`use_enable bzip2 bz2lib` \
`use_with truetype xft` \
`use_with X xshm` `use_with X xcursor` \
${myconf} || die "Configuration Failed"
libtoolize --copy --force
emake || die "Parallel Make Failed"
}
Reporter no longer using Gentoo, closing. |