2021-11-11 01:36:19 -05:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
|
|
|
EAPI=8
|
|
|
|
|
2022-08-07 22:04:59 -04:00
|
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
|
|
PYTHON_COMPAT=( python3_{8..11} )
|
2021-11-11 01:36:19 -05:00
|
|
|
|
|
|
|
inherit distutils-r1
|
|
|
|
|
2021-12-17 04:03:11 -05:00
|
|
|
if [[ ${PV} == 9999 ]]; then
|
2021-11-11 01:36:19 -05:00
|
|
|
inherit git-r3
|
|
|
|
EGIT_REPO_URI="https://github.com/bitcraft/pyscroll.git"
|
2021-12-17 04:03:11 -05:00
|
|
|
else
|
2022-08-07 22:04:59 -04:00
|
|
|
SRC_URI="https://github.com/bitcraft/pyscroll/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
2021-12-17 04:03:11 -05:00
|
|
|
KEYWORDS="~amd64"
|
2021-11-11 01:36:19 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
DESCRIPTION="Animated scrolling maps for Pygame"
|
|
|
|
HOMEPAGE="https://github.com/bitcraft/pyscroll"
|
|
|
|
LICENSE="LGPL-3"
|
|
|
|
SLOT="0"
|
2022-08-07 22:04:59 -04:00
|
|
|
RESTRICT="test"
|
2021-11-11 01:36:19 -05:00
|
|
|
|
|
|
|
DEPEND=""
|
|
|
|
RDEPEND="dev-python/pygame"
|
|
|
|
BDEPEND=""
|