summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2017-09-15 22:11:11 +1000
committerMichael Palimaka <kensington@gentoo.org>2017-09-15 22:11:31 +1000
commit341d397b7fa7c66b58e88760df2e366924fc8915 (patch)
treeef38f615f2a20d44045b2a0237e3c183e81a1a24 /app-text/ansifilter/ansifilter-2.5.ebuild
parentapp-text/ansifilter: stabilise 2.8.1 for amd64/x86 (diff)
downloadgentoo-341d397b7fa7c66b58e88760df2e366924fc8915.tar.gz
gentoo-341d397b7fa7c66b58e88760df2e366924fc8915.tar.bz2
gentoo-341d397b7fa7c66b58e88760df2e366924fc8915.zip
app-text/ansifilter: remove old
Package-Manager: Portage-2.3.6, Repoman-2.3.3
Diffstat (limited to 'app-text/ansifilter/ansifilter-2.5.ebuild')
-rw-r--r--app-text/ansifilter/ansifilter-2.5.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/app-text/ansifilter/ansifilter-2.5.ebuild b/app-text/ansifilter/ansifilter-2.5.ebuild
deleted file mode 100644
index 96216b32abea..000000000000
--- a/app-text/ansifilter/ansifilter-2.5.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)" CFLAGS="${CFLAGS} -c -std=c++11" LDFLAGS="${LDFLAGS}"
-
- 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
-}