Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 141730 - dev-ruby/ruby-oci8-0.1.15 fails to completely install
Summary: dev-ruby/ruby-oci8-0.1.15 fails to completely install
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Matthew Marlowe (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-07-25 12:02 UTC by milagodo
Modified: 2006-08-21 05:17 UTC (History)
1 user (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 milagodo 2006-07-25 12:02:13 UTC
Install output(Reduced)
>>> Source unpacked.
ruby setup.rb config
---> lib
---> lib/DBD
---> lib/DBD/OCI8
<--- lib/DBD/OCI8
<--- lib/DBD
<--- lib
---> ext
---> ext/oci8
/usr/bin/ruby18 /var/tmp/portage/ruby-oci8-0.1.15/work/ruby-oci8-0.1.15/ext/oci8/extconf.rb
ruby setup.rb setup
setup.rb config first
Try 'ruby setup.rb --help' for detailed usage.
make: *** [setup] Error 1
make: *** Waiting for unfinished jobs....

Solution:
I went to /var/tmp/portage/ruby-oci8-0.1.15/work/ruby-oci8-0.1.15/ 
and ran
ruby setup config
ruby setup setup
ruby setup install

And it aparently works

I think that  setup.rb config first was the eroneous command
Comment 1 Mike Williams 2006-08-01 03:32:50 UTC
It's a problem of parallel jobs (MAKEOPTS=-j2 and above).
Either set MAKEOPTS=-j1 or make

emake || die

in src_compile()

emake -j1 || die

See bug #132584 for a similar issue.

You'll need the change from bug #138263 too, or it won't install.
Comment 2 Matthew Marlowe (RETIRED) gentoo-dev 2006-08-21 05:17:07 UTC
patch applied and tested.