blob: 9ab8226a65985e54b9dad4de3e734df6f9692086 (
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
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/converseen/converseen-0.4.7.ebuild,v 1.1 2011/12/07 20:31:27 maksbotan Exp $
EAPI="4"
LANGSLONG="cs_CZ de_DE fr_FR hu_HU it_IT pl_PL pt_BR 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"
RDEPEND="
x11-libs/qt-gui:4
|| ( media-gfx/imagemagick media-gfx/graphicsmagick[imagemagick] )
"
DEPEND="${RDEPEND}"
DOCS="README"
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
}
|