blob: 3a9c579380c768b49e34f4a285198a4abce26e8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools desktop flag-o-matic toolchain-funcs
DESCRIPTION="Rotating pieces puzzle game"
HOMEPAGE="https://github.com/artemsen/pipewalker"
SRC_URI="https://github.com/artemsen/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3+"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
media-libs/libpng:=
media-libs/libsdl[opengl,sound,video]
virtual/opengl
"
RDEPEND="${DEPEND}"
BDEPEND="virtual/pkgconfig"
src_prepare() {
default
eautoreconf
}
src_configure() {
append-cppflags $($(tc-getPKG_CONFIG) --cflags sdl || die)
default
}
src_install() {
emake -C data DESTDIR="${D}" install
dobin src/${PN}
doicon extra/${PN}.xpm
make_desktop_entry ${PN} PipeWalker
einstalldocs
}
|