Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 210239 - dev-libs/libiconv/ should move libs with more specific names
Summary: dev-libs/libiconv/ should move libs with more specific names
Status: RESOLVED FIXED
Alias: None
Product: Gentoo/Alt
Classification: Unclassified
Component: FreeBSD (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo/BSD Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-02-15 12:56 UTC by Michael Haubenwallner (RETIRED)
Modified: 2008-03-19 17:25 UTC (History)
1 user (show)

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 Michael Haubenwallner (RETIRED) gentoo-dev 2008-02-15 12:56:45 UTC
In prefix on AIX I'm trying to have get_libname returning ".a" (don't ask why).

Now, dev-libs/libiconv-1.11.ebuild does this:
    mv "${D}"/usr/$(get_libdir)/*.so* "${D}/$(get_libdir)"

In prefix we have to change '.so' to '$(get_libname)', which is ok.

But with get_libname returning ".a", this would move usr/lib/*.a*, which also matches usr/lib/charset.alias

To keep differences between main and prefix small and less confusing, I'd be glad if this could be changed to one of these in main tree:

-   mv "${D}"/usr/$(get_libdir)/*.so* "${D}/$(get_libdir)"
+   mv "${D}"/usr/$(get_libdir)/lib*.so* "${D}/$(get_libdir)"
or more specific
+   mv "${D}"/usr/$(get_libdir)/lib{charset,iconv}*.so* "${D}/$(get_libdir)"

Thanks you!
Comment 1 Michael Haubenwallner (RETIRED) gentoo-dev 2008-03-19 16:35:34 UTC
need this for AIX: Committed revision 19551 in prefix overlay.
Comment 2 Michael Haubenwallner (RETIRED) gentoo-dev 2008-03-19 17:25:58 UTC
done for libiconv-1.12 in main tree.