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-arcade/tecnoballz: update to 0.93.1
Fix media-libs/libsdl[joystick] dependency (#733772). Closes: https://bugs.gentoo.org/733772 Closes: https://bugs.gentoo.org/739112 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Azamat H. Hackimov <[email protected]> Signed-off-by: Sam James <[email protected]>
- Loading branch information
1 parent
ff95971
commit 193814c
Showing
3 changed files
with
39 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST tecnoballz-0.92.tgz 2763879 BLAKE2B a9414c402781e9d65da5e3c0cfe4815fd80978ff874fa245237baca960278c85ba33ff2a59debf0cd6547d75e20f39afc058bd1204405ecef27d62bb8bdfdbb7 SHA512 e3868e846cdebaed6ee78050560be86557c6d01ee6512375a09eccbcf70f0cd12e419c6997a348794a41dfb75f0f3cb70321f1bb9a9bf1156a90976b0e401e13 | ||
DIST tecnoballz-0.93.1.tar.gz 1989092 BLAKE2B b623a11b9cbb599af85cd8a8cae712dc6403cc0e406f0ecee00f92e571a94db9ea3b8446d3abf9e6992fcb680775ea5e83cb5c58b563c71ddf83c6a969ac4e69 SHA512 5ccbff786398b191f56809180e7309a1e183852f69f51c1797e9e5db5e7ef04d8daa37940c31c2d5ab6911974d140da5d88d81d668122a0ffc37938ef856702b |
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,35 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
inherit autotools desktop | ||
|
||
DESCRIPTION="An exciting Brick Breaker" | ||
HOMEPAGE="http://linux.tlk.fr/games/TecnoballZ/" | ||
SRC_URI="https://github.com/brunonymous/tecnoballz/archive/${PV}.tar.gz -> ${P}.tar.gz" | ||
|
||
LICENSE="GPL-3+" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~x86" | ||
|
||
DEPEND=" | ||
dev-libs/tinyxml | ||
media-libs/libsdl[joystick] | ||
media-libs/sdl-mixer[mikmod] | ||
media-libs/sdl-image[png] | ||
media-libs/libmikmod:0" | ||
RDEPEND="${DEPEND}" | ||
|
||
src_prepare() { | ||
default | ||
mkdir man/fr || die | ||
mv man/${PN}.fr.6 man/fr/${PN}.6 || die | ||
sed -i -e 's:\$(prefix)/games:\$(prefix)/bin:' src/Makefile.am || die | ||
sed -i -e '/CXXFLAGS=/d' -e '/^else/d' configure.ac || die | ||
eautoreconf | ||
} | ||
|
||
src_install() { | ||
default | ||
make_desktop_entry ${PN} Tecnoballz | ||
} |