blob: 1907de1862a6aa678aa2abda84930f69f136df11 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="5"
PLOCALES="el es_AR es_ES"
inherit l10n qt4-r2 readme.gentoo
DESCRIPTION="Lightweight image viewer, similar to eog or viewnior for Gnome"
HOMEPAGE="https://code.google.com/p/qiviewer"
SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="webp"
DEPEND="dev-qt/qtgui:4
webp? ( media-libs/libwebp )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}/src"
DOC_CONTENTS="If you want support for gif and tiff images
make sure that you build dev-qt/qtgui:4
with apropriate USE flags"
src_prepare() {
local LOCALE_FILES=""
add_locale() {
LOCALE_FILES="${LOCALE_FILES} ${1}.ts"
}
# Check for locales added/removed from previous version
l10n_find_plocales_changes "${S}/translations" "" '.ts'
# Fill list of available locale files
l10n_for_each_locale_do add_locale
sed -i -e "s:TRANSLATIONS += .\+:TRANSLATIONS = ${LOCALE_FILES}:" translations/locale.pri || die 'locale sed failed'
# Fix mime types in desktop file
sed -i -e "s:^MimeType=\(.\+\)imaqe/x-xpixrnap;\(.\+\):MimeType=\1\2:" qiviewer.desktop || die 'desktop file sed failed'
# Use system libwebp
epatch "${FILESDIR}"/${PN}-use-system-webp.patch
qt4-r2_src_prepare
}
src_configure() {
local _webp=
use webp && _webp="CONFIG+=enable-webp"
eqmake4 ${PN}.pro $_webp
}
src_install() {
qt4-r2_src_install
cd "${WORKDIR}"/"${PN}"
dodoc AUTHORS ChangeLog README
readme.gentoo_create_doc
}
|