diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-07-11 19:04:34 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-07-11 20:34:33 +0200 |
commit | 6a958f1ee2deae01ea4db02e00f66125a1a1f211 (patch) | |
tree | eb9d093056f4b7ead3bd68657aa29b14e1ef679a /games-board/simsu/simsu-1.3.6.ebuild | |
parent | www-apps/wordpress: version bump to 4.9.7 (diff) | |
download | gentoo-6a958f1ee2deae01ea4db02e00f66125a1a1f211.tar.gz gentoo-6a958f1ee2deae01ea4db02e00f66125a1a1f211.tar.bz2 gentoo-6a958f1ee2deae01ea4db02e00f66125a1a1f211.zip |
games-board/simsu: 1.3.6 version bump
Bug: https://bugs.gentoo.org/660930
Package-Manager: Portage-2.3.42, Repoman-2.3.9
Diffstat (limited to 'games-board/simsu/simsu-1.3.6.ebuild')
-rw-r--r-- | games-board/simsu/simsu-1.3.6.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/games-board/simsu/simsu-1.3.6.ebuild b/games-board/simsu/simsu-1.3.6.ebuild new file mode 100644 index 000000000000..75b793631b42 --- /dev/null +++ b/games-board/simsu/simsu-1.3.6.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit gnome2-utils qmake-utils + +DESCRIPTION="A basic sudoku game" +HOMEPAGE="https://gottcode.org/simsu/" +SRC_URI="https://gottcode.org/${PN}/${P}-src.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 +" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5 +" + +src_configure() { + eqmake5 +} + +src_install() { + dobin ${PN} + insinto /usr/share/${PN}/translations + doins translations/*qm + dodoc ChangeLog + doicon -s scalable icons/hicolor/scalable/apps/${PN}.svg + domenu icons/${PN}.desktop +} + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} |