diff options
author | Michael Palimaka <kensington@gentoo.org> | 2017-08-27 15:27:41 +1000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2017-08-27 15:37:09 +1000 |
commit | 3a94c7f769b597f1d0dc06ae099f23ac3b134af1 (patch) | |
tree | 4f7f7b90794165d4b15060a969226af5ecb5a369 /dev-qt/qtserialport | |
parent | qt5-build.eclass: handle live minor versions >=10 (diff) | |
download | qt-3a94c7f769b597f1d0dc06ae099f23ac3b134af1.tar.gz qt-3a94c7f769b597f1d0dc06ae099f23ac3b134af1.tar.bz2 qt-3a94c7f769b597f1d0dc06ae099f23ac3b134af1.zip |
dev-qt: add 5.10.9999
Note that there is no qtwebkit-5.10.9999 or later - it has switched to a
separate versioning scheme and release cycle.
Gentoo-bug: 624404
Diffstat (limited to 'dev-qt/qtserialport')
-rw-r--r-- | dev-qt/qtserialport/qtserialport-5.10.9999.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-qt/qtserialport/qtserialport-5.10.9999.ebuild b/dev-qt/qtserialport/qtserialport-5.10.9999.ebuild new file mode 100644 index 00000000..f0e77107 --- /dev/null +++ b/dev-qt/qtserialport/qtserialport-5.10.9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit qt5-build + +DESCRIPTION="Serial port abstraction library for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + virtual/libudev:= +" +RDEPEND="${DEPEND}" + +src_prepare() { + # make sure we link against libudev + sed -i -e 's/:qtConfig(libudev)//' \ + src/serialport/serialport-lib.pri || die + + qt5-build_src_prepare +} |