blob: 803e1a01e29516645806ad1353d01175ae2e87ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="Batch image converter and resizer based on ImageMagick"
HOMEPAGE="http://converseen.fasterland.net/"
SRC_URI="https://github.com/Faster3ck/Converseen/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
# FIXME: graphicsmagick dependency does not work properly, failures when compiling
# || ( media-gfx/imagemagick[cxx] media-gfx/graphicsmagick[cxx,imagemagick] )
RDEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtwidgets:5
media-gfx/imagemagick:=[cxx]
"
DEPEND="${RDEPEND}
dev-qt/linguist-tools:5
"
S="${WORKDIR}/${P^}"
PATCHES=( "${FILESDIR}/${P}-gnuinstalldirs.patch" )
|