diff options
author | Alex Alexander <wired@gentoo.org> | 2013-03-03 08:25:02 +0200 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2013-03-03 08:25:02 +0200 |
commit | 9f26676be31397718bd2c1be968a9744440ed323 (patch) | |
tree | 7ddba87496273cea7cc1782d729640be4d9da9b2 /dev-qt/qtprintsupport/qtprintsupport-5.9999.ebuild | |
parent | PyQt4/sip: Automated version bump, remove old (diff) | |
download | qt-9f26676be31397718bd2c1be968a9744440ed323.tar.gz qt-9f26676be31397718bd2c1be968a9744440ed323.tar.bz2 qt-9f26676be31397718bd2c1be968a9744440ed323.zip |
x11-libs/qt-* => dev-qt/qt*
Following the portage tree move, I moved qt-* stuff to dev-qt.
Adjusted qt deps using the script from the qt-move branch.
Also adjusted sets, keyword files and scripts.
Hopefully I didn't forget anything :)
Diffstat (limited to 'dev-qt/qtprintsupport/qtprintsupport-5.9999.ebuild')
-rw-r--r-- | dev-qt/qtprintsupport/qtprintsupport-5.9999.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.9999.ebuild b/dev-qt/qtprintsupport/qtprintsupport-5.9999.ebuild new file mode 100644 index 00000000..d4d571e6 --- /dev/null +++ b/dev-qt/qtprintsupport/qtprintsupport-5.9999.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit qt5-build + +DESCRIPTION="The Qt toolkit is a comprehensive C++ application development framework" + +if [[ ${QT5_BUILD_TYPE} == live ]]; then + KEYWORDS="" +else + KEYWORDS="~amd64" +fi + +IUSE="cups" + +RDEPEND=" + ~dev-qt/qtcore-${PV}[debug=] + ~dev-qt/qtgui-${PV}[debug=] + ~dev-qt/qtwidgets-${PV}[debug=] + cups? ( net-print/cups ) +" +DEPEND="${RDEPEND} + test? ( ~dev-qt/qtnetwork-${PV}[debug=] ) +" + +QT5_TARGET_SUBDIRS=( + src/printsupport + src/plugins/printsupport +) + +pkg_setup() { + QCONFIG_ADD="$(usev cups)" + + qt5-build_pkg_setup +} + +src_configure() { + local myconf=( + $(qt_use cups) + ) + qt5-build_src_configure +} |