Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 32492 - openoffice-bin-1.1.0 ebuild broken
Summary: openoffice-bin-1.1.0 ebuild broken
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Office Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-11-01 13:52 UTC by Alessandro Pisani
Modified: 2003-11-07 01:39 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 Alessandro Pisani 2003-11-01 13:52:33 UTC
openoffice-1.1.0 ebuild still contains some _rc4 text substitutions in sed which causes the build process to fail to install the largest part of the needed files.
removing _rc4 from the sed strings fixes the bug.
Comment 1 Paul de Vrieze (RETIRED) gentoo-dev 2003-11-02 03:55:49 UTC
I cannot find the substitutions you mean. Could you point them out, or post
a diff file?
Comment 2 Alessandro Pisani 2003-11-06 08:26:28 UTC
here it is:
openoffice-bin-1.1.0.ebuild:

line 116:     sed -e "s|<pv>|${PV//_rc4}|g" ${T}/rsfile-local > ${T}/autoresponse-${PV}.conf

should be instead:     sed -e "s|<pv>|${PV}|g" ${T}/rsfile-local > ${T}/autoresponse-${PV}.conf
Comment 3 Paul de Vrieze (RETIRED) gentoo-dev 2003-11-07 01:39:15 UTC
I don't think that the substitution should be the cause as there should be
no _rc4 in the PV variable. However I removed it from the ebuild as it serves
no further purpose.