2020-05-22 00:55:50 +03:00
|
|
|
# Copyright 1999-2020 Gentoo Authors
|
2016-11-03 18:38:43 +03:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2020-05-22 00:55:50 +03:00
|
|
|
EAPI=7
|
2016-11-03 18:38:43 +03:00
|
|
|
|
2020-05-22 00:55:50 +03:00
|
|
|
inherit qmake-utils xdg-utils
|
2016-11-03 18:38:43 +03:00
|
|
|
|
2020-05-22 00:55:50 +03:00
|
|
|
DESCRIPTION="Tetris clone based on Qt5"
|
2016-11-03 18:38:43 +03:00
|
|
|
HOMEPAGE="https://gottcode.org/gottet/"
|
|
|
|
SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="GPL-3+"
|
|
|
|
SLOT="0"
|
2017-11-19 20:50:15 +03:00
|
|
|
KEYWORDS="~amd64 ~x86"
|
2016-11-03 18:38:43 +03:00
|
|
|
IUSE=""
|
|
|
|
|
2020-05-22 00:55:50 +03:00
|
|
|
BDEPEND="
|
|
|
|
dev-qt/linguist-tools:5
|
|
|
|
"
|
2016-11-03 18:38:43 +03:00
|
|
|
RDEPEND="
|
|
|
|
dev-qt/qtcore:5
|
|
|
|
dev-qt/qtgui:5
|
|
|
|
dev-qt/qtwidgets:5
|
|
|
|
"
|
2020-05-22 00:55:50 +03:00
|
|
|
DEPEND="${RDEPEND}"
|
2016-11-03 18:38:43 +03:00
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
eqmake5 PREFIX="/usr"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake INSTALL_ROOT="${D}" install
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
2020-05-22 00:55:50 +03:00
|
|
|
xdg_icon_cache_update
|
2016-11-03 18:38:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
2020-05-22 00:55:50 +03:00
|
|
|
xdg_icon_cache_update
|
2016-11-03 18:38:43 +03:00
|
|
|
}
|