From 62c25086ac8644a9f5fb822cf25ad0aa6155b025 Mon Sep 17 00:00:00 2001 From: Michael Palimaka Date: Tue, 13 Jun 2017 21:39:25 +1000 Subject: app-text/ansifilter: do not use doman on a compressed file Gentoo-bug: 619940 Package-Manager: Portage-2.3.5, Repoman-2.3.2 --- app-text/ansifilter/ansifilter-2.4-r1.ebuild | 57 ++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 app-text/ansifilter/ansifilter-2.4-r1.ebuild (limited to 'app-text') diff --git a/app-text/ansifilter/ansifilter-2.4-r1.ebuild b/app-text/ansifilter/ansifilter-2.4-r1.ebuild new file mode 100644 index 000000000000..96216b32abea --- /dev/null +++ b/app-text/ansifilter/ansifilter-2.4-r1.ebuild @@ -0,0 +1,57 @@ +# 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 +} -- cgit v1.2.3-65-gdbad