Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 435476 - games-fps/soldieroffortune-1.06a fails to install - sed typo
Summary: games-fps/soldieroffortune-1.06a fails to install - sed typo
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Games (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Gentoo Games
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-09-19 05:58 UTC by Jared B.
Modified: 2012-09-19 15:16 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 Jared B. 2012-09-19 05:58:07 UTC
The current in-tree version of soldieroffortune doesn't install; it fails during the install stage with a sed error.  I tracked down the problem to a missing '\' at the end of the sed line.  The (very) simple patch to fix:

--- /usr/portage/games-fps/soldieroffortune/soldieroffortune-1.06a.ebuild       2012-02-05 00:31:14.000000000 -0600
+++ soldieroffortune-1.06a.ebuild       2012-09-19 00:51:33.574205314 -0500
@@ -70,7 +70,7 @@
 
        games_make_wrapper sof ./sof "${dir}" "${dir}"
        sed -i \
-               -e 's/^exec /__GL_ExtensionStringVersion=17700 exec /'
+               -e 's/^exec /__GL_ExtensionStringVersion=17700 exec /' \
                "${D}/${GAMES_BINDIR}/sof" || die
        doicon "${CDROM_ROOT}"/sof.xpm
        make_desktop_entry sof "Soldier of Fortune" sof

Reproducible: Always
Comment 1 Mr. Bones. (RETIRED) gentoo-dev 2012-09-19 15:16:05 UTC
fixed.  thanks for the bug report.