2021-08-22 12:17:47 +02:00
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
2021-09-28 13:37:35 +02:00
EAPI = 8
2021-08-22 12:17:47 +02:00
PLOCALES = "af an ar az be be@latin bg bs ca ckb co cs da de el en_GB es et eu fa fi fr ga gl he hr hu hy id is it ja ka kab kk ko lt lv ms nb nl oc pa pl pt_BR pt_PT ro ru sk sl sq sr sv tg th tr uk uz vi zh_CN zh_TW"
WX_GTK_VER = 3.0-gtk3
2021-09-28 13:37:35 +02:00
inherit plocale wxwidgets xdg
2021-08-22 12:17:47 +02:00
DESCRIPTION = "GUI gettext translations editor"
HOMEPAGE = "https://poedit.net"
SRC_URI = " https://github.com/vslavik/ ${ PN } /releases/download/v ${ PV } -oss/ ${ P } .tar.gz "
IUSE = "+cld2 +crowdin"
KEYWORDS = "~amd64"
LICENSE = "MIT"
SLOT = "0"
RDEPEND = "
app-text/gtkspell:3
x11-libs/gtk+:3
>= dev-cpp/lucene++-3.0.5
>= dev-libs/pugixml-1.9
dev-libs/boost:= [ nls]
dev-libs/icu:=
>= x11-libs/wxGTK-3.0.4:${ WX_GTK_VER } [ X,webkit]
cld2? ( sci-libs/cld2 )
crowdin? (
dev-cpp/cpprest
app-crypt/libsecret
)
"
DEPEND = " ${ RDEPEND } "
BDEPEND = "
virtual/pkgconfig
"
src_prepare( ) {
my_rm_loc( ) {
sed -i -e " /^POEDIT_LINGUAS = /s: ${ 1 } :: " locales/Makefile.in || die
rm " locales/ ${ 1 } .mo " || die
}
plocale_find_changes 'locales' '' '.mo'
plocale_for_each_disabled_locale my_rm_loc
setup-wxwidgets
xdg_src_prepare
2021-09-28 13:59:26 +02:00
default
2021-08-22 12:17:47 +02:00
}
src_configure( ) {
local myeconfargs = (
$( use_with cld2)
$( use_with crowdin cpprest)
)
econf " ${ myeconfargs [@] } "
}