diff options
author | Michael Palimaka <kensington@gentoo.org> | 2017-11-25 20:29:59 +1100 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-11-25 20:32:34 +1100 |
commit | 701402b1682e96af88c2e1d3ae42e8b88e308a1e (patch) | |
tree | 04f0eebe735f1b27150d4e87326af0f2b043666b /dev-qt/qtprintsupport/qtprintsupport-5.9.3.ebuild | |
parent | sys-devel/heirloom-devtools: Really commit patch for fixing gcc6 support (#59... (diff) | |
download | gentoo-701402b1682e96af88c2e1d3ae42e8b88e308a1e.tar.gz gentoo-701402b1682e96af88c2e1d3ae42e8b88e308a1e.tar.bz2 gentoo-701402b1682e96af88c2e1d3ae42e8b88e308a1e.zip |
dev-qt: version bump 5.9.3
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'dev-qt/qtprintsupport/qtprintsupport-5.9.3.ebuild')
-rw-r--r-- | dev-qt/qtprintsupport/qtprintsupport-5.9.3.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.9.3.ebuild b/dev-qt/qtprintsupport/qtprintsupport-5.9.3.ebuild new file mode 100644 index 000000000000..71b61e387963 --- /dev/null +++ b/dev-qt/qtprintsupport/qtprintsupport-5.9.3.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +QT5_MODULE="qtbase" +VIRTUALX_REQUIRED="test" +inherit qt5-build + +DESCRIPTION="Printing support library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86" +fi + +IUSE="cups gles2" + +RDEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtgui-${PV}[gles2=] + ~dev-qt/qtwidgets-${PV}[gles2=] + cups? ( >=net-print/cups-1.4 ) +" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtnetwork-${PV} ) +" + +QT5_TARGET_SUBDIRS=( + src/printsupport + src/plugins/printsupport +) + +QT5_GENTOO_CONFIG=( + cups +) + +src_configure() { + local myconf=( + $(qt_use cups) + -opengl $(usex gles2 es2 desktop) + ) + qt5-build_src_configure +} |