forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
converseen-0.6.4-r1.ebuild
48 lines (41 loc) · 1.13 KB
/
converseen-0.6.4-r1.ebuild
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
LANGSLONG="cs_CZ de_DE fr_FR hu_HU it_IT pl_PL pt_BR ru_RU tr_TR"
LANGS="es_CL"
inherit cmake-utils
DESCRIPTION="Batch image converter and resizer based on ImageMagick"
HOMEPAGE="http://converseen.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
for x in ${LANGS}; do
IUSE="${IUSE} linguas_${x}"
done
for x in ${LANGSLONG}; do
IUSE="${IUSE} linguas_${x%_*}"
done
# FIXME: graphicsmagick dependency does not work properly, failures when compiling
# || ( media-gfx/imagemagick[cxx] media-gfx/graphicsmagick[cxx,imagemagick] )
RDEPEND="
dev-qt/qtgui:4
media-gfx/imagemagick:=[cxx]
"
DEPEND="${RDEPEND}"
DOCS=( README.md )
src_prepare() {
for x in ${LANGSLONG}; do
if use !linguas_${x%_*}; then
rm -f "loc/${PN}_${x}."* || die
sed -i -e "\,/${PN}_${x}\...,d" CMakeLists.txt || die
fi
done
for x in ${LANGS}; do
if use !linguas_${x}; then
rm -f "loc/${PN}_${x}."* || die
sed -i -e "\,/${PN}_${x}\...,d" CMakeLists.txt || die
fi
done
}