diff options
Diffstat (limited to 'media-gfx/gnofract4d/gnofract4d-3.14.1.ebuild')
-rw-r--r-- | media-gfx/gnofract4d/gnofract4d-3.14.1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/media-gfx/gnofract4d/gnofract4d-3.14.1.ebuild b/media-gfx/gnofract4d/gnofract4d-3.14.1.ebuild new file mode 100644 index 000000000000..6164a7696c14 --- /dev/null +++ b/media-gfx/gnofract4d/gnofract4d-3.14.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL=1 +MY_PV=V_${PV//./_} + +inherit distutils-r1 fdo-mime + +DESCRIPTION="A program for drawing beautiful mathematically-based images known as fractals" +HOMEPAGE="http://edyoung.github.io/gnofract4d/" +SRC_URI="https://github.com/edyoung/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="x11-libs/gtk+:2 + media-libs/libpng:0= + virtual/jpeg:0 + >=dev-python/pygtk-2[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/gnofract4d-3.14-desktop.patch + "${FILESDIR}"/gnofract4d-3.14-manual.patch +) + +S="${WORKDIR}"/${PN}-${MY_PV} + +python_compile_all() { + # Needs fixing to be able to generate commands.xml + "${EPYTHON}" createdocs.py || die +} + +python_install_all() { + distutils-r1_python_install_all + rm -rf "${ED%/}"/usr/share/doc/${PN} || die +} + +pkg_postinst() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} + +pkg_postrm() { + fdo-mime_desktop_database_update + fdo-mime_mime_database_update +} |