mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-23 05:53:12 -04:00
Closes: https://bugs.gentoo.org/934203 Closes: https://bugs.gentoo.org/934204 Closes: https://bugs.gentoo.org/934205 Signed-off-by: Takuya Wakazono <pastalian46@gmail.com>
48 lines
899 B
Bash
48 lines
899 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit wrapper
|
|
|
|
DESCRIPTION="A remake of the 1996 classic game Z, with network play"
|
|
HOMEPAGE="https://sourceforge.net/projects/zedonline/"
|
|
SRC_URI="https://downloads.sourceforge.net/project/zedonline/releases/ZED%20Online%20v$PV%20Linux.zip"
|
|
|
|
S="$WORKDIR"
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RESTRICT="strip"
|
|
|
|
RDEPEND="
|
|
dev-libs/glib:2
|
|
media-libs/freetype
|
|
media-libs/libglvnd
|
|
net-misc/curl
|
|
x11-libs/cairo
|
|
x11-libs/gdk-pixbuf:2
|
|
x11-libs/gtk+:3
|
|
x11-libs/pango
|
|
"
|
|
BDEPEND="
|
|
app-arch/unzip
|
|
"
|
|
|
|
QA_PREBUILT="opt/zedonline/*"
|
|
|
|
src_install() {
|
|
P="$ED/opt/zedonline"
|
|
mkdir -p $P|| die
|
|
cp -r . "$ED/opt/zedonline/" || die
|
|
|
|
make_wrapper $PN "'./ZED Online'" /opt/$PN/
|
|
}
|
|
|
|
pgk_postinst() {
|
|
einfo "See the game guide at https://zzone.lewe.com/commander-zod-single-player-guide"
|
|
}
|