holgersson-overlay/games-puzzle/osmos/osmos-1.6.1-r4.ebuild
Nils Freydank 55e1038e8d
games-puzzle/osmos: Improve ebuild for QA
Fixes:
  EmptyGlobalAssignment: version 1.6.1-r4: line 18: empty global assignment: IUSE=""
  VariableOrderWrong: version 1.6.1-r4: variable S should occur before RESTRICT

Signed-off-by: Nils Freydank <nils.freydank@posteo.de>
2024-12-05 07:14:10 +01:00

56 lines
1.1 KiB
Bash

# Copyright 2017-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit desktop
MY_PN="Osmos"
MY_P="${MY_PN}_${PV}"
DESCRIPTION="Play as a single-celled organism absorbing others"
HOMEPAGE="https://www.osmos-game.com/"
SRC_URI="${MY_P}.tar.gz"
S="${WORKDIR}/${MY_PN}"
LICENSE="Hemisphere_Games-EULA"
SLOT="0"
KEYWORDS="-* ~amd64"
RESTRICT="bindist fetch strip test"
PROPERTIES="interactive"
RDEPEND="
media-libs/freetype:2
media-libs/libvorbis
media-libs/openal
virtual/glu
virtual/opengl
x11-libs/libX11
"
QA_PREBUILT="/opt/osmos/osmos"
DEPEND="${RDEPEND}"
pkg_nofetch() {
einfo "Please download ${MY_P}.tar.gz and place it into DISTDIR directory."
}
src_install() {
# install a wrapper file
exeinto "/usr/bin/"
newexe "${FILESDIR}"/osmos-wrapper.sh ${PN}
# install all files to /opt/osmos, including the actual binary
exeinto "/opt/${PN}"
newexe ${MY_PN}.bin64 ${PN}
insinto "/opt/${PN}"
doins -r Fonts/ Sounds/ Textures/ Osmos-* *.cfg
newicon "Icons/256x256.png" "${PN}.png"
dodoc readme.html
make_desktop_entry "${PN}" "Osmos"
}