You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
940 B
54 lines
940 B
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit toolchain-funcs qt4-r2
|
|
|
|
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="qt4"
|
|
|
|
RDEPEND="
|
|
qt4? (
|
|
dev-qt/qtcore:4
|
|
dev-qt/qtgui:4
|
|
)"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
pkg_setup() {
|
|
myopts=(
|
|
"CC=$(tc-getCXX)"
|
|
"CFLAGS=${CFLAGS} -c"
|
|
"LDFLAGS=${LDFLAGS}"
|
|
"DESTDIR=${ED}"
|
|
"PREFIX=${EPREFIX}/usr"
|
|
"doc_dir=${EPREFIX}/usr/share/doc/${PF}/"
|
|
)
|
|
}
|
|
|
|
src_prepare() {
|
|
# bug 431452
|
|
rm src/qt-gui/moc_mydialog.cpp || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake -f makefile "${myopts[@]}"
|
|
if use qt4 ; then
|
|
cd src/qt-gui
|
|
eqmake4
|
|
emake
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
emake -f makefile "${myopts[@]}" install
|
|
use qt4 && emake -f makefile "${myopts[@]}" install-gui
|
|
}
|