diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2021-12-07 19:26:36 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2021-12-07 23:40:01 +0100 |
commit | b54efa980f324693233907b1ea223404a7940158 (patch) | |
tree | cbae27612285a79612f945d1c9bb7eeedf6d86b8 /x11-libs/qwtplot3d | |
parent | dev-python/memory_profiler: Bump to 0.59 (diff) | |
download | gentoo-b54efa980f324693233907b1ea223404a7940158.tar.gz gentoo-b54efa980f324693233907b1ea223404a7940158.tar.bz2 gentoo-b54efa980f324693233907b1ea223404a7940158.zip |
x11-libs/qwtplot3d: add new snapshot
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'x11-libs/qwtplot3d')
-rw-r--r-- | x11-libs/qwtplot3d/Manifest | 1 | ||||
-rw-r--r-- | x11-libs/qwtplot3d/qwtplot3d-0.2_p20210828.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/x11-libs/qwtplot3d/Manifest b/x11-libs/qwtplot3d/Manifest index d4cc3220a601..8ada881f3c31 100644 --- a/x11-libs/qwtplot3d/Manifest +++ b/x11-libs/qwtplot3d/Manifest @@ -1 +1,2 @@ DIST qwtplot3d-0.2.tar.gz 322366 BLAKE2B 7c589efe13409089dd6e1b579f19891fb0b75e44a4add87128822b3184c4d22ec0e7b04ce4c7c52dfaf8644a17a8506419726ae1ab50ab7cd7bc9ea9f84f9268 SHA512 92addf10865d090216a92d5ced5b0793b50657c6c5e5faf5c8f78120cc9c94a0b6f8e351d2e053b73951411b8f81a4179c0f17aea27d78cd748df8f81b31bcf9 +DIST qwtplot3d-0.2_p20210828.tar.gz 162362 BLAKE2B e2382f8b1b6f9f3ac5526a6ae3269f649badf11240e65283c62a88ae620ca81d6f1bad51f39651c1ca1fa8bf63f47978a41386cdec64a374a16eb7bf579d0875 SHA512 92ecfd6e91a31921993171f41f4606abbbd675fb869c32c3f1e0665cb13e1d88718bba39493edbc350c8e0a7b66cdfb14fd998d46b3f67b7223a41260347061a diff --git a/x11-libs/qwtplot3d/qwtplot3d-0.2_p20210828.ebuild b/x11-libs/qwtplot3d/qwtplot3d-0.2_p20210828.ebuild new file mode 100644 index 000000000000..0824caa45404 --- /dev/null +++ b/x11-libs/qwtplot3d/qwtplot3d-0.2_p20210828.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DOCS_BUILDER="doxygen" +DOCS_DIR="doc" +DOCS_CONFIG_NAME="Doxyfile.doxygen" + +inherit docs cmake + +COMMIT="b2655743d30ed3185f3c0e2626b33a1d29655216" + +DESCRIPTION="3D plotting library for Qt5" +HOMEPAGE="http://qwtplot3d.sourceforge.net/ https://github.com/SciDAVis/qwtplot3d/" +SRC_URI="https://github.com/SciDAVis/qwtplot3d/archive/${COMMIT}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${COMMIT}" + +LICENSE="ZLIB" +KEYWORDS="~amd64 ~x86" +SLOT="0" + +IUSE="doc" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtopengl:5 + dev-qt/qtwidgets:5 + x11-libs/gl2ps +" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}/${PN}-doxygen.patch" + "${FILESDIR}/${PN}-gcc44.patch" +) + +src_compile() { + cmake_src_compile + docs_compile +} |