commit: b5726bb6a2ab7d7f952edf1087a36e1c8603eb3f Author: Davide Pesavento <pesa <AT> gentoo <DOT> org> AuthorDate: Wed May 11 18:41:06 2016 +0000 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org> CommitDate: Wed May 11 18:46:18 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5726bb6
x11-libs/qtermwidget: import live ebuild from qt overlay Package-Manager: portage-2.2.28 x11-libs/qtermwidget/qtermwidget-9999.ebuild | 58 ++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/x11-libs/qtermwidget/qtermwidget-9999.ebuild b/x11-libs/qtermwidget/qtermwidget-9999.ebuild new file mode 100644 index 0000000..330186f --- /dev/null +++ b/x11-libs/qtermwidget/qtermwidget-9999.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit cmake-utils multibuild git-r3 + +DESCRIPTION="Qt terminal emulator widget" +HOMEPAGE="https://github.com/lxde/qtermwidget" +EGIT_REPO_URI="https://github.com/lxde/qtermwidget.git" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="" +IUSE="qt4 qt5" +REQUIRED_USE="|| ( qt4 qt5 )" + +DEPEND=" + qt4? ( dev-qt/designer:4 + dev-qt/qtcore:4 + dev-qt/qtgui:4 ) + qt5? ( dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 )" +RDEPEND="${DEPEND}" + +src_prepare() { + MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) ) + default +} + +mb_variantx() { + if [[ ${MULTIBUILD_VARIANT} == "$1" ]]; then + echo "${2-ON}" + else + echo "${3-OFF}" + fi +} + +src_configure() { + myconfigure() { + local mycmakeargs=( + -DBUILD_DESIGNER_PLUGIN="$(mb_variantx qt4)" + -DUSE_QT5="$(mb_variantx qt5)" + ) + cmake-utils_src_configure + } + + multibuild_foreach_variant myconfigure +} + +src_compile() { + multibuild_foreach_variant cmake-utils_src_compile +} + +src_install() { + multibuild_foreach_variant cmake-utils_src_install +}
