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-roguelike/wrogue: remove deprecated games eclass
Also update to EAPI 6 Gentoo-Bug: https://bugs.gentoo.org/574082 Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
51 additions
and
2 deletions.
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
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,49 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
inherit eutils | ||
|
||
DESCRIPTION="Gothic science fantasy roguelike game" | ||
HOMEPAGE="https://freecode.com/projects/wrogue" | ||
SRC_URI="mirror://gentoo/${P}.zip" | ||
|
||
LICENSE="GPL-3" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
IUSE="" | ||
|
||
RDEPEND="media-libs/libsdl[video]" | ||
DEPEND="${RDEPEND} | ||
app-arch/unzip" | ||
|
||
PATCHES=( | ||
"${FILESDIR}"/${P}-ldflags.patch | ||
) | ||
|
||
src_prepare() { | ||
default | ||
|
||
sed -i \ | ||
-e "/AppData\[0\]/ s:AppData.*:strcpy(AppData, \"/usr/share/${PN}/\");:" \ | ||
src/lib/appdir.c \ | ||
|| die "sed failed" | ||
} | ||
|
||
src_compile() { | ||
local myCPPFLAGS="-std=c99 -Iinclude -Ilib -Iui -Igenerate" | ||
local myCFLAGS="$(sdl-config --cflags) ${CFLAGS}" | ||
emake -C src -f linux.mak STRIP_BINARY=NO \ | ||
CFLAGS="${myCPPFLAGS} ${myCFLAGS}" release | ||
} | ||
|
||
src_install() { | ||
dobin ${PN} | ||
insinto /usr/share/${PN} | ||
doins -r data | ||
dodoc changes.txt | ||
|
||
newicon data/ui/icon.bmp ${PN}.bmp | ||
make_desktop_entry ${PN} "Warp Rogue" /usr/share/pixmaps/${PN}.bmp | ||
} |