diff options
Diffstat (limited to 'app-editors/tea/tea-41.1.0.ebuild')
-rw-r--r-- | app-editors/tea/tea-41.1.0.ebuild | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/app-editors/tea/tea-41.1.0.ebuild b/app-editors/tea/tea-41.1.0.ebuild new file mode 100644 index 000000000000..c1f2497a05e6 --- /dev/null +++ b/app-editors/tea/tea-41.1.0.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PLOCALES="de fr ru" + +inherit eutils l10n qmake-utils + +DESCRIPTION="Small, lightweight Qt text editor" +HOMEPAGE="http://tea.ourproject.org/ http://semiletov.org/tea/" +SRC_URI="http://tea.ourproject.org/dloads/${P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~x86 ~x86-fbsd" +IUSE="aspell hunspell" + +RDEPEND=" + dev-qt/qtcore:4 + dev-qt/qtgui:4 + sys-libs/zlib + aspell? ( app-text/aspell ) + hunspell? ( app-text/hunspell ) +" +DEPEND="${RDEPEND} + hunspell? ( virtual/pkgconfig ) +" + +DOCS=( AUTHORS ChangeLog NEWS TODO ) + +src_configure() { + eqmake4 src.pro \ + $(use aspell || echo CONFIG+=noaspell) \ + $(use hunspell || echo CONFIG+=nohunspell) +} + +src_install() { + dobin bin/tea + + newicon icons/tea-icon-v3-01.png ${PN}.png + make_desktop_entry ${PN} 'Tea Editor' + + # translations + insinto /usr/share/qt4/translations + local lang + for lang in $(l10n_get_locales); do + doins translations/${PN}_${lang}.qm + done + + # docs + dohtml manuals/en.html + if use linguas_ru; then + dodoc NEWS-RU + dohtml manuals/ru.html + fi +} |