Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 299474 - media-libs/libgpod installs pointless libtool archive (.la) files
Summary: media-libs/libgpod installs pointless libtool archive (.la) files
Status: RESOLVED UPSTREAM
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High QA (vote)
Assignee: Olivier Crete (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-01-03 13:14 UTC by Diego Elio Pettenò (RETIRED)
Modified: 2010-04-07 15:17 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 Diego Elio Pettenò (RETIRED) gentoo-dev 2010-01-03 13:14:01 UTC
Hear me out first of all: if I'm opening this bug it's because I've confirmed that some of the .la that your package installs are totally bogus:

/usr/lib/python2.6/site-packages/gpod/_gpod.la

These files are installed as either part of Ruby or Python bindings (neither interpreters use libtool to load their extensions, so they won't be even knowing the .la file is around, and you cannot *link* against those), or PAM modules (no implementation of PAM uses libtool to load the modules, so even here the .la files won't be considered at all).

While these don't cause the kind of headaches .la files are known for (as you won't be linking against them to begin with), they are polluting the live filesystem as well as increasing the work for the analysis of those .la files that you link against. Please consider deleting them in the ebuild, after the make install is called.

Further note: when these files are around, it's not uncommon for the packages to mistakenly build and install static archives (.a) files as well, even if these are modules that are only loaded from dynamic ELF files. If that is the case, *don't delete those after install*; instead follow the documentation I wrote at http://www.flameeyes.eu/autotools-mythbuster/libtool/index.html#libtool.plugins.dlopen to fix the packages so that only the shared object file is built (you still need to delete the .la file after install).

This way you don't bother installing them and shorten the build time (as the static and shared versions are built with different flags which cause each source file to be built twice).

Thank you for your help on cleaning up this mess.

Diego
Comment 1 Olivier Crete (RETIRED) gentoo-dev 2010-04-07 15:17:11 UTC
Wrote patch, forwarded it upstream for the static archives

If you want to fight the presence of the .la files, change how libtool works first. I'm not gonna do it one package at a time.