summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2018-01-26 01:10:30 +1100
committerMichael Palimaka <kensington@gentoo.org>2018-01-26 01:14:45 +1100
commit5296e9fab423b390cb916a3b927f8e0e3f09239a (patch)
tree2320643d0e24f9e78d747b7c72649e392656a86f /app-text/ansifilter
parentapp-text/ansifilter: stabilise 2.9 for amd64/x86 (diff)
downloadgentoo-5296e9fab423b390cb916a3b927f8e0e3f09239a.tar.gz
gentoo-5296e9fab423b390cb916a3b927f8e0e3f09239a.tar.bz2
gentoo-5296e9fab423b390cb916a3b927f8e0e3f09239a.zip
app-text/ansifilter: remove 2.8.1
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'app-text/ansifilter')
-rw-r--r--app-text/ansifilter/Manifest1
-rw-r--r--app-text/ansifilter/ansifilter-2.8.1.ebuild57
2 files changed, 0 insertions, 58 deletions
diff --git a/app-text/ansifilter/Manifest b/app-text/ansifilter/Manifest
index d35aeda6752c..d17010a9fe8a 100644
--- a/app-text/ansifilter/Manifest
+++ b/app-text/ansifilter/Manifest
@@ -1,2 +1 @@
-DIST ansifilter-2.8.1.tar.bz2 436461 BLAKE2B f4b059ed7c8cb2823c9793cffd49193160295b1be0a25981464979add2759116d62b7a938c599eb3a45ea7f647f2293f9bd67883e4b2010ff395d24d6bea9da5 SHA512 f736b1e9d975a17431a19c2a889ede1feab6b8967d6981fa08d4d1a541cdc1478258dbf6173b7d00f9aa476cf79cfd1c7321c9d017a8aa6ad7ac9133b33a0830
DIST ansifilter-2.9.tar.bz2 455885 BLAKE2B 0865e17f45d16657e78444e65bcde07f74ee9d8605e100ef34354fc874210fa6cc4d01162e234bfca9c486fac3c41be0d1e0caa014d9702d4a90798b1fa85636 SHA512 9fd086d9b5fecb7c1d42f96baa728b2b6c155505bfb42f92c1a79ce59571abff541c7d55e14b159ad0e7890434fdbc1b383bc76ab4c22a16d835e270b6095005
diff --git a/app-text/ansifilter/ansifilter-2.8.1.ebuild b/app-text/ansifilter/ansifilter-2.8.1.ebuild
deleted file mode 100644
index 47881d0b8810..000000000000
--- a/app-text/ansifilter/ansifilter-2.8.1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs qmake-utils
-
-DESCRIPTION="Handles text files containing ANSI terminal escape codes"
-HOMEPAGE="http://www.andre-simon.de/"
-SRC_URI="http://www.andre-simon.de/zip/${P}.tar.bz2"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="qt5"
-
-RDEPEND="
- qt5? (
- dev-qt/qtcore:5
- dev-qt/qtgui:5
- dev-qt/qtwidgets:5
- )"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
-
- # bug 431452
- rm src/qt-gui/moc_mydialog.cpp || die
-}
-
-src_configure() {
- if use qt5 ; then
- pushd src/qt-gui > /dev/null || die
- eqmake5
- popd > /dev/null || die
- fi
-}
-
-src_compile() {
- emake -f makefile CC="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} -DNDEBUG -std=c++11"
-
- if use qt5 ; then
- pushd src/qt-gui > /dev/null || die
- emake
- popd > /dev/null || die
- fi
-}
-
-src_install() {
- dobin src/${PN}
- use qt5 && dobin src/qt-gui/${PN}-gui
-
- gunzip man/${PN}.1.gz
- doman man/${PN}.1
- einstalldocs
-}