diff options
author | Michael Vetter <jubalh@iodoru.org> | 2023-12-22 16:56:22 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2023-12-23 18:05:00 +0000 |
commit | 8df993dc792e775c64a77f2c958e087b90294465 (patch) | |
tree | f534944aa2e66ab5b0c47e681c2fd73deb9fee67 /media-gfx/panini/panini-0.74.0.ebuild | |
parent | games-puzzle/nudoku: add 3.0.0 (diff) | |
download | gentoo-8df993dc792e775c64a77f2c958e087b90294465.tar.gz gentoo-8df993dc792e775c64a77f2c958e087b90294465.tar.bz2 gentoo-8df993dc792e775c64a77f2c958e087b90294465.zip |
media-gfx/panini: add 0.74.0
Signed-off-by: Michael Vetter <jubalh@iodoru.org>
Closes: https://github.com/gentoo/gentoo/pull/34422
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-gfx/panini/panini-0.74.0.ebuild')
-rw-r--r-- | media-gfx/panini/panini-0.74.0.ebuild | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/media-gfx/panini/panini-0.74.0.ebuild b/media-gfx/panini/panini-0.74.0.ebuild new file mode 100644 index 000000000000..aaf6d2f25332 --- /dev/null +++ b/media-gfx/panini/panini-0.74.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit desktop qmake-utils xdg-utils + +MY_P="${P/p/P}-src" +DESCRIPTION="OpenGL-based panoramic image viewer" +HOMEPAGE="https://github.com/lazarus-pkgs/panini" +SRC_URI="https://github.com/lazarus-pkgs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtopengl:5 + dev-qt/qtwidgets:5 + sys-libs/zlib + virtual/glu +" +DEPEND="${RDEPEND} + app-arch/unzip +" + +DOCS=( NEWS {BUILD,README,USAGE}.md ) + +src_prepare() { + default + eqmake5 ${PN}.pro +} + +src_install() { + einstalldocs + dobin panini + domenu "${FILESDIR}"/${PN}.desktop + newicon ui/panini-icon-blue.jpg ${PN}.jpg +} + +pkg_postinst() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +} + +pkg_postrm() { + xdg_mimeinfo_database_update + xdg_desktop_database_update +} |