Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 110953

Summary: dev-games/ode-0.5-r3 (with shared lib support)
Product: Gentoo Linux Reporter: Andrew Kirilenko <andrew.kirilenko>
Component: New packagesAssignee: Gentoo Games <games>
Status: RESOLVED LATER    
Severity: enhancement CC: vdmitri
Priority: High    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---
Attachments: ebuild
patch

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