2013-01-07 17:10:51 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
2012-12-06 10:31:14 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-03-04 02:16:24 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/app-editors/focuswriter/focuswriter-1.4.1.ebuild,v 1.4 2013/03/02 19:20:49 hwoarang Exp $
|
2012-12-06 10:31:14 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
PLOCALES="ca cs da de el en es es_MX fi fr hu it ja nl pl pt_BR pt ru sk sv uk zh_CN"
|
|
|
|
PLOCALE_BACKUP="en"
|
|
|
|
inherit qt4-r2 l10n
|
|
|
|
|
|
|
|
DESCRIPTION="A fullscreen and distraction-free word processor"
|
|
|
|
HOMEPAGE="http://gottcode.org/focuswriter/"
|
|
|
|
SRC_URI="http://gottcode.org/${PN}/${P}-src.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="GPL-3"
|
|
|
|
SLOT="0"
|
2013-01-14 09:58:38 +04:00
|
|
|
KEYWORDS="amd64 x86"
|
2012-12-06 10:31:14 +04:00
|
|
|
IUSE="debug"
|
|
|
|
|
|
|
|
RDEPEND="
|
|
|
|
app-text/enchant
|
|
|
|
dev-libs/libzip
|
|
|
|
media-libs/sdl-mixer[wav]
|
|
|
|
sys-libs/zlib
|
2013-03-04 02:16:24 +04:00
|
|
|
dev-qt/qtcore:4
|
|
|
|
dev-qt/qtgui:4
|
2012-12-06 10:31:14 +04:00
|
|
|
"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
virtual/pkgconfig
|
|
|
|
"
|
|
|
|
|
|
|
|
DOCS=( ChangeLog CREDITS README )
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
l10n_for_each_disabled_locale_do rm_loc
|
|
|
|
}
|
|
|
|
|
|
|
|
src_configure() {
|
|
|
|
eqmake4 PREFIX="${EPREFIX}/usr"
|
|
|
|
}
|
|
|
|
|
|
|
|
rm_loc() {
|
|
|
|
sed -e "s|translations/${PN}_${1}.ts||" -i ${PN}.pro || die 'sed failed'
|
|
|
|
rm translations/${PN}_${1}.{ts,qm} || die "removing ${1} locale failed"
|
|
|
|
}
|