mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
x11-libs/qtermwidget: import live ebuild from qt overlay
Package-Manager: portage-2.2.28
This commit is contained in:
58
x11-libs/qtermwidget/qtermwidget-9999.ebuild
Normal file
58
x11-libs/qtermwidget/qtermwidget-9999.ebuild
Normal file
@@ -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
|
||||
}
|
||||
Reference in New Issue
Block a user