diff options
Diffstat (limited to 'media-gfx/imv/imv-2.0.0.ebuild')
-rw-r--r-- | media-gfx/imv/imv-2.0.0.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/media-gfx/imv/imv-2.0.0.ebuild b/media-gfx/imv/imv-2.0.0.ebuild new file mode 100644 index 000000000000..3943820cfdec --- /dev/null +++ b/media-gfx/imv/imv-2.0.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit eutils fdo-mime + +DESCRIPTION="Minimal image viewer designed for tiling window manager users" +HOMEPAGE="https://github.com/eXeC64/imv" +SRC_URI="https://github.com/eXeC64/${PN}/archive/v${PV}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + media-libs/fontconfig + media-libs/libsdl2 + media-libs/sdl2-ttf + media-libs/freeimage +" + +DEPEND="${RDEPEND}" + +src_install() { + emake DESTDIR="${D}" install +} + +pkg_postinst() { + fdo-mime_desktop_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update +} |