blob: 0cffeb404fb8acf53c3ee353726f0acb2dcc9c53 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/kde-misc/krename/krename-4.0.9.ebuild,v 1.2 2012/04/22 16:35:47 johu Exp $
EAPI=4
KDE_LINGUAS="bs cs de el es fr hu it ja lt nl pl pt ru sl sv tr uk zh_CN"
inherit kde4-base
DESCRIPTION="KRename - a very powerful batch file renamer."
HOMEPAGE="http://www.krename.net/"
SRC_URI="mirror://sourceforge/krename/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="4"
KEYWORDS="~amd64 ~x86"
IUSE="debug exif pdf taglib truetype"
DEPEND="
exif? ( >=media-gfx/exiv2-0.13 )
pdf? ( >=app-text/podofo-0.8 )
taglib? ( >=media-libs/taglib-1.5 )
truetype? ( media-libs/freetype:2 )
"
RDEPEND="${DEPEND}"
DOCS=( AUTHORS README TODO )
src_configure() {
mycmakeargs+=(
$(cmake-utils_use_with exif EXIV2)
$(cmake-utils_use_with taglib)
$(cmake-utils_use_with pdf LIBPODOFO)
$(cmake-utils_use_with truetype Freetype)
)
kde4-base_src_configure
}
|