app-editors/tea: Drop 44.1.1
authorAndreas Sturmlechner <asturm@gentoo.org>
Mon, 1 Apr 2019 20:05:04 +0000 (22:05 +0200)
committerAndreas Sturmlechner <asturm@gentoo.org>
Mon, 1 Apr 2019 20:44:52 +0000 (22:44 +0200)
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
app-editors/tea/Manifest
app-editors/tea/tea-44.1.1.ebuild [deleted file]

index 16837ba57a82086a4d0d64fcd5f85e877ecef4d5..f99875f7c8fcc8560766c1530b1ec8a8fbae8e26 100644 (file)
@@ -1,2 +1 @@
-DIST tea-44.1.1.tar.bz2 425326 BLAKE2B e674456c428bbecd5afb256280bccb61b6385492153955625c158dcfebba0ed31caebdcc06bc1f809517badddef3d97245a4bc873bcc0593957647becdebf62b SHA512 fc7bf6f76ac3a48767a39ff5bcada4c7dae40950bfd9aca4021b3581e1b702c73f2608b070306dd528932d5eaa73bf01632a4376bbb71deaf1189a0f790c05a9
 DIST tea-47.0.0.tar.bz2 437273 BLAKE2B 8ed36526dedc6df4af74ef0e400c2ee2e19bb533cf2a4fa51df83f21ad78abb0e8e90bce3469e2e8db5f780ba8a900aedf2737c736945431b836ba0a76574b26 SHA512 7136d59383bf43c6a024a31aa29860a3e89893ff091a42f44f9e7088fb318920ab886cd1fdabc8ff6e3c30f8eb3d46d707228d2d45fb085ed7c822a4ffd89d13
diff --git a/app-editors/tea/tea-44.1.1.ebuild b/app-editors/tea/tea-44.1.1.ebuild
deleted file mode 100644 (file)
index e2cc47f..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit gnome2-utils qmake-utils xdg-utils
-
-DESCRIPTION="Small, lightweight Qt text editor"
-HOMEPAGE="https://tea.ourproject.org/"
-SRC_URI="https://tea.ourproject.org/dloads/${P}.tar.bz2"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x86-fbsd"
-IUSE="aspell djvu hunspell pdf +qml"
-
-RDEPEND="
-       dev-qt/qtcore:5
-       dev-qt/qtgui:5
-       dev-qt/qtnetwork:5
-       dev-qt/qtprintsupport:5
-       dev-qt/qtwidgets:5
-       sys-libs/zlib
-       aspell? ( app-text/aspell )
-       djvu? ( app-text/djvu )
-       hunspell? ( app-text/hunspell:= )
-       pdf? ( app-text/poppler[qt5] )
-       qml? ( dev-qt/qtdeclarative:5 )
-"
-DEPEND="${RDEPEND}
-       hunspell? ( virtual/pkgconfig )
-"
-
-DOCS=( AUTHORS ChangeLog NEWS NEWS-RU TODO )
-
-src_configure() {
-       eqmake5 src.pro \
-               PREFIX="/usr" \
-               $(use aspell || echo CONFIG+=noaspell) \
-               $(use djvu && echo CONFIG+=usedjvu) \
-               $(use hunspell || echo CONFIG+=nohunspell) \
-               $(use pdf && echo CONFIG+=usepoppler) \
-               $(use qml || echo CONFIG+=noqml)
-}
-
-src_install() {
-       emake INSTALL_ROOT="${D}" install
-       einstalldocs
-
-       docinto html
-       dodoc manuals/*.html
-
-       insinto /usr/share/qt5/translations
-       doins translations/${PN}_*.qm
-}
-
-pkg_postinst() {
-       gnome2_icon_cache_update
-       xdg_desktop_database_update
-}
-
-pkg_postrm() {
-       gnome2_icon_cache_update
-       xdg_desktop_database_update
-}