Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 25097 - DirectFB fails to locate libmpeg3 headers
Summary: DirectFB fails to locate libmpeg3 headers
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal
Assignee: Gentoo X packagers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-07-22 22:38 UTC by Lourdes Jones
Modified: 2003-08-05 05:03 UTC (History)
3 users (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 Lourdes Jones 2003-07-22 22:38:22 UTC
Attempting to emerge DirectFB 0.9.18 emerges libmpeg3 (files are placed 
into /usr/include/libmpeg3) but the configuration script for DirectFB does not 
find the header files and fails to compile in libmpeg support.

Exporting CPPFLAGS=-I/usr/include/libmpeg3 should care of the problem.

Temporary fix was to copy DirectFB-0.9.18.ebuild to /usr/local/portage/dev-
libs/DirectFB and change:
  src_compile() {
    econf \
to
  src_compile() {
    CPPFLAGS=-I/usr/include/libmpeg3 \
    econf \

Not sure how proper a fix this is. :)



Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Patrick Kursawe (RETIRED) gentoo-dev 2003-08-05 05:03:30 UTC
0.9.19-r1 should fix this - the quick and dirty way. Looks like the program authors actually recommend setting CPPFLAGS instead of providing a better configure script.