forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
games-fps/redeclipse: revision bump, fix installation
This revision fixes the incorrect installation of the desktop file entry, and provides a wrapper script to address the runtime problem introduced by no longer using EAPI 5's games installation paths. Package-Manager: Portage-2.3.19, Repoman-2.3.6 Closes: gentoo#6979
- Loading branch information
1 parent
19367bd
commit ba7dd57
Showing
2 changed files
with
15 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
|
||
# It is necessary to run the binary from the root of the data directory | ||
# for the binary to properly locate its assets and load properly. | ||
# Upstream's original install procedure is doing the same thing. | ||
|
||
SERVER=/usr/bin/redeclipse_server_linux | ||
CLIENT=/usr/bin/redeclipse_linux | ||
cd /usr/share/redeclipse || exit 1 | ||
[ "$0" = "redeclipse_server" ] && exec $SERVER || exec $CLIENT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters