Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 430110 - app-office/libreoffice: USE flags for individual components
Summary: app-office/libreoffice: USE flags for individual components
Status: RESOLVED CANTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All All
: Normal enhancement (vote)
Assignee: Gentoo Office Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-06 00:07 UTC by Jannis Limperg
Modified: 2012-08-06 09:26 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 Jannis Limperg 2012-08-06 00:07:47 UTC
Problem: Currently, there is no way to select individual components of the LibreOffice suite and deselect others. This is an issue because the whole suite is fairly space and compile-time intensive, and it is likely that many users will only need some of the many components. For instance, things like 'calc' and 'writer' will probably have a significantly larger user base than the 'base' component.

Suggested solution: Adding USE flags for specific components would solve the problem in the usual Gentoo way. in detail, the new flags would be:

- base
- calc
- draw
- impress
- math
- writer

See also the corresponding Debian source package: <http://packages.debian.org/de/source/sid/libreoffice>.

Reproducible: Always
Comment 1 Tomáš Chvátal (RETIRED) gentoo-dev 2012-08-06 08:02:33 UTC
Can't do.

Binary distributions split it on runtime based on file lists. That is something we in Gentoo are not able to do.

FWIW the switches to switch individual components are not even planed so unless you yourself plan to work on this upstream there is no way this bug will be fixed.
Comment 2 Jannis Limperg 2012-08-06 09:15:00 UTC
All right, and thanks a lot for the quick response. I thought there should be a reasonably easy way to reflect the components in a Makefile or the like, but then such things are always way more difficult than one would think.
Comment 3 Tomáš Chvátal (RETIRED) gentoo-dev 2012-08-06 09:26:09 UTC
The problem is that the components are too depending on each other. So disabling one usually have suprising results in the other apps.

And the work required for this is:

* add the switch
* check if disabling building of one component does not change the resulting binary of other ones
* split the installed files (binaries/images/etc...)
* ...
* profit

And the second step is hellish to do :-)