diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-05-01 13:24:29 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-05-01 21:32:24 +0200 |
commit | 26c93b2e1b051163a22dcd8696e1129f157a5507 (patch) | |
tree | 80a81443589d88970bba44e91fdff2eb13270228 /games-puzzle/fbg | |
parent | games-puzzle/enigma: Drop old (diff) | |
download | gentoo-26c93b2e1b051163a22dcd8696e1129f157a5507.tar.gz gentoo-26c93b2e1b051163a22dcd8696e1129f157a5507.tar.bz2 gentoo-26c93b2e1b051163a22dcd8696e1129f157a5507.zip |
games-puzzle/fbg: Stop using games.eclass
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-puzzle/fbg')
-rw-r--r-- | games-puzzle/fbg/fbg-0.9-r2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/games-puzzle/fbg/fbg-0.9-r2.ebuild b/games-puzzle/fbg/fbg-0.9-r2.ebuild new file mode 100644 index 000000000000..b0c84fa8eeca --- /dev/null +++ b/games-puzzle/fbg/fbg-0.9-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit desktop + +DESCRIPTION="A Tetris clone written in OpenGL" +HOMEPAGE="http://fbg.sourceforge.net/" +SRC_URI="mirror://sourceforge/fbg/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="virtual/opengl + virtual/glu + dev-games/physfs + media-libs/libsdl[opengl,video] + media-libs/libmikmod + x11-libs/libXt" +RDEPEND="${DEPEND}" + +src_prepare() { + default + sed -i \ + -e "/FBGDATADIR=/s:\".*\":\"/usr/share/${PN}\":" \ + -e '/^datadir=/d' \ + configure || die +} + +src_configure() { + econf --disable-fbglaunch +} + +src_install() { + default + newicon startfbg/icon.xpm ${PN}.xpm + make_desktop_entry ${PN} "Falling Block Game" ${PN} + rm -rf "${ED}/usr/doc" +} |