Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 110953 - dev-games/ode-0.5-r3 (with shared lib support)
Summary: dev-games/ode-0.5-r3 (with shared lib support)
Status: RESOLVED LATER
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Gentoo Games
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-10-30 15:38 UTC by Andrew Kirilenko
Modified: 2005-10-31 08:11 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments
ebuild (ode-0.5-r3.ebuild,1.98 KB, text/plain)
2005-10-30 15:38 UTC, Andrew Kirilenko
Details
patch (ode-shared.patch,2.25 KB, patch)
2005-10-30 15:39 UTC, Andrew Kirilenko
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Andrew Kirilenko 2005-10-30 15:38:10 UTC
Hello! 
 
Here is new ebuild (and related patch) to make ode install .so (required by 
xmoto e.g.). 
 
Best regards, 
Andrew.
Comment 1 Andrew Kirilenko 2005-10-30 15:38:36 UTC
Created attachment 71762 [details]
ebuild
Comment 2 Andrew Kirilenko 2005-10-30 15:39:01 UTC
Created attachment 71763 [details, diff]
patch
Comment 3 SpanKY gentoo-dev 2005-10-30 17:34:36 UTC
why is it needed ?
Comment 4 Andrew Kirilenko 2005-10-31 00:53:19 UTC
1. because new xmoto needs it 
2. having .so is usually good idea 
Comment 5 SpanKY gentoo-dev 2005-10-31 06:46:01 UTC
you have yet to say why xmoto needs it
Comment 6 Andrew Kirilenko 2005-10-31 07:37:41 UTC
You should ask xmoto's dev. 
 
AC_CHECK_LIB(ode,dJointAttach, [], [ 
        echo "libode required!" 
        exit -1 
        ]) 
 
(c) xmoto's configure.in 
Comment 7 SpanKY gentoo-dev 2005-10-31 08:11:07 UTC
no, that isnt exactly the reason for the failure

force this into the xmoto configure.ac for now:
save_LIBS=$LIBS
LIBS="$LIBS -lstdc++ -lm"
AC_CHECK_LIB(ode,dJointAttach,...)
LIBS=$save_LIBS