Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 153970 - enlightenment.eclass - WANT_AUTO* variables need to be exported (+ automake-1.10 issues)
Summary: enlightenment.eclass - WANT_AUTO* variables need to be exported (+ automake-1...
Status: RESOLVED INVALID
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: SpanKY
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-11-03 14:44 UTC by Jakub Moc (RETIRED)
Modified: 2006-11-04 02:11 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jakub Moc (RETIRED) gentoo-dev 2006-11-03 14:44:20 UTC
The WANT_AUTO* stuff in there is useless as it never gets exported.

1. emerge -C =automake-1.10
2. replace WANT_AUTOMAKE=latest w/ WANT_AUTOMAKE=1.9 in the eclass
2. emerge some ebuild that inherits the eclass and watch it bomb out...

<snip>
Running aclocal...
am-wrapper: /usr/bin/aclocal-1.10 is missing or not executable.
</snip>

WANT_AUTOMAKE=latest is also not the best choice here, eterm, eclair, e_modules (and bunch of others pretty likely) fails w/ automake-1.10.
Comment 1 SpanKY gentoo-dev 2006-11-04 01:51:57 UTC
enlightenment.eclass is fine

i'll work diego to fix autotools.eclass
Comment 2 Jakub Moc (RETIRED) gentoo-dev 2006-11-04 02:11:58 UTC
Well yeah, the autotools.eclass solution is less that ideal... Anyway, could you do something like this?

[[ -z ${WANT_AUTOCONF} ]] && WANT_AUTOCONF="latest"
[[ -z ${WANT_AUTOMAKE} ]] && WANT_AUTOMAKE="latest"

Can't override it in ebuilds otherwise w/o messing w/ the eclass, which sucks. Will be needed even after the autotools.eclass gets tweaked to handle this better.