Skip to content

Commit

Permalink
dev-games/flatzebra: EAPI7, fix LICENSE, cleanup
Browse files Browse the repository at this point in the history
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Michael Mair-Keimberger <[email protected]>
Closes: gentoo#16628
Signed-off-by: James Le Cuirot <[email protected]>
  • Loading branch information
mm1ke authored and chewi committed Jul 26, 2020
1 parent 9e2dc34 commit 84cbacc
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions dev-games/flatzebra/flatzebra-0.1.6-r1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

DESCRIPTION="Generic game engine for 2D double-buffering animation"
HOMEPAGE="https://perso.b2b2c.ca/~sarrazip/dev/batrachians.html"
SRC_URI="https://perso.b2b2c.ca/~sarrazip/dev/${P}.tar.gz"

LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"

RDEPEND="media-libs/libsdl[video]
media-libs/sdl-image
media-libs/sdl-mixer"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"

src_prepare() {
default
sed -i \
-e '/^doc_DATA =/s/^/NOTHANKS/' \
Makefile.in || die
}

src_configure() {
econf $(use_enable static-libs static)
}

src_install() {
default
if ! use static-libs; then
find "${ED}" -type f -name '*.la' -delete || die
fi
}

0 comments on commit 84cbacc

Please sign in to comment.