diff options
author | Diogo Pereira <sir.suriv@gmail.com> | 2018-03-06 19:41:46 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-03-07 21:17:27 +0100 |
commit | e96b994c30f7ef629c831e368292c546a2302332 (patch) | |
tree | 79efc3ab2d011228d4dacc79ff5cb25084a470bc /media-plugins/gimp-resynthesizer | |
parent | dev-db/pspg: Cleanup (diff) | |
download | gentoo-e96b994c30f7ef629c831e368292c546a2302332.tar.gz gentoo-e96b994c30f7ef629c831e368292c546a2302332.tar.bz2 gentoo-e96b994c30f7ef629c831e368292c546a2302332.zip |
media-plugins/gimp-resynthesizer: fix dependencies
This package installs some Python scripts, so it has a runtime
dependency on media-gfx/gimp[python].
Also add a missing build-time dependency on pkgconfig.
Closes: https://bugs.gentoo.org/646156
Reported-by: Franz Fellner <alpine.art.de@gmail.com>
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'media-plugins/gimp-resynthesizer')
-rw-r--r-- | media-plugins/gimp-resynthesizer/gimp-resynthesizer-2.0.3-r1.ebuild (renamed from media-plugins/gimp-resynthesizer/gimp-resynthesizer-2.0.3.ebuild) | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/media-plugins/gimp-resynthesizer/gimp-resynthesizer-2.0.3.ebuild b/media-plugins/gimp-resynthesizer/gimp-resynthesizer-2.0.3-r1.ebuild index 1a6a43534b3b..3e8b63d21d1d 100644 --- a/media-plugins/gimp-resynthesizer/gimp-resynthesizer-2.0.3.ebuild +++ b/media-plugins/gimp-resynthesizer/gimp-resynthesizer-2.0.3-r1.ebuild @@ -3,7 +3,9 @@ EAPI=6 -inherit autotools +PYTHON_COMPAT=( python2_7 ) + +inherit autotools python-single-r1 MY_PN="${PN#gimp-}" MY_P="${MY_PN}-${PV}" @@ -17,8 +19,9 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="media-gfx/gimp" -RDEPEND="${DEPEND}" +DEPEND="media-gfx/gimp + virtual/pkgconfig" +RDEPEND="media-gfx/gimp[python,${PYTHON_USEDEP}]" S="${WORKDIR}/${MY_P}" |