Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 26734 - db-3.2.9-r2 fails to install static libraries
Summary: db-3.2.9-r2 fails to install static libraries
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Library (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Paul de Vrieze (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-08-16 10:57 UTC by Bartek Papierski
Modified: 2003-08-17 01:08 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 Bartek Papierski 2003-08-16 10:57:36 UTC
There's an error in ebuild script that tries to install static library using a
wrong name. Correct is libdb.a and libdb_cxx.a
I suggest renaming them to libdb-3.2.a and libdb_cxx-3.2.a

Proposed patch:

*** db-3.2.9-r2.ebuild.orig     Sat Aug 16 19:01:53 2003
--- db-3.2.9-r2.ebuild  Sat Aug 16 19:02:53 2003
***************
*** 100,105 ****
--- 100,107 ----
                install || die

        cd ${S}/build-static
+       mv libdb.a libdb-3.2.a
+       mv libdb_cxx.a libdb_cxx-3.2.a
        dolib.a libdb-3.2.a libdb_cxx-3.2.a

        dodir usr/include/db3

Reproducible: Always
Steps to Reproduce:
1.
2.
3.
Comment 1 Paul de Vrieze (RETIRED) gentoo-dev 2003-08-17 01:08:18 UTC
Please try db-3.2.9-r7, that version should install the static libraries.