Add 'media-gfx/ktikz/ktikz-9999.ebuild'

This commit is contained in:
fomys 2019-05-23 20:32:58 +00:00
parent a82cba7aec
commit 90f2edb325

View File

@ -0,0 +1,75 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils cmake-utils qmake-utils git-r3 xdg
DESCRIPTION="A QT5-based editor for the TikZ language"
HOMEPAGE="http://www.hackenberger.at/blog/ktikz-editor-for-the-tikz-language"
LICENSE="GPL-2"
SLOT="5"
KEYWORDS=""
IUSE="kde -ktexteditor +doc -debug"
EGIT_REPO_URI="https://github.com/jfmcarreira/ktikz.git"
DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtwidgets:5
dev-qt/qtprintsupport:5
app-text/poppler[qt5]
doc? ( dev-qt/qthelp:5 )
kde? (
kde-frameworks/kxmlgui
kde-frameworks/ktexteditor
kde-frameworks/kparts
kde-frameworks/kiconthemes
)
virtual/latex-base
dev-texlive/texlive-latexextra
dev-tex/pgf
"
RDEPEND="${DEPEND}
!media-gfx/ktikz:4
"
DOCS="Changelog TODO"
src_prepare() {
# correct the qcollectiongenerator binary
sed -ie 's%#QCOLLECTIONGENERATORCOMMAND = qcollectiongenerator%QCOLLECTIONGENERATORCOMMAND = /usr/lib/qt5/bin/qcollectiongenerator%g' qmake/qtikzconfig.pri || die
eapply_user
}
src_configure() {
if use kde; then
local mycmakeargs=(
-DKTIKZ_USE_KTEXTEDITOR=$(usex ktexteditor)
)
cmake-utils_src_configure
else
KDECONFIG="CONFIG-=usekde"
eqmake5 qtikz.pro "CONFIG+=nostrip" "$KDECONFIG"
fi
}
src_compile() {
if use !doc; then
comment_add_subdirectory doc
fi
if use kde; then
cmake-utils_src_compile
else
emake
fi
}
src_install() {
if use kde; then
cmake-utils_src_install
else
emake INSTALL_ROOT="${D}" install
fi
}