diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2024-08-31 16:59:34 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2024-08-31 17:00:01 +0300 |
commit | 548b8dd57d7dc7751f165ff1f900a33d8a74c2f8 (patch) | |
tree | 81b0e3e31a13c0ce96e0c417cf9bfb6918556c9b /x11-libs/qwtplot3d/qwtplot3d-0.2.ebuild | |
parent | app-dicts/myspell-he: EAPI 7 -> 8 (diff) | |
download | gentoo-548b8dd57d7dc7751f165ff1f900a33d8a74c2f8.tar.gz gentoo-548b8dd57d7dc7751f165ff1f900a33d8a74c2f8.tar.bz2 gentoo-548b8dd57d7dc7751f165ff1f900a33d8a74c2f8.zip |
x11-libs/qwtplot3d: drop 0.2
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'x11-libs/qwtplot3d/qwtplot3d-0.2.ebuild')
-rw-r--r-- | x11-libs/qwtplot3d/qwtplot3d-0.2.ebuild | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/x11-libs/qwtplot3d/qwtplot3d-0.2.ebuild b/x11-libs/qwtplot3d/qwtplot3d-0.2.ebuild deleted file mode 100644 index 94347022ede3..000000000000 --- a/x11-libs/qwtplot3d/qwtplot3d-0.2.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DOCS_BUILDER="doxygen" -DOCS_DIR="doc" -DOCS_CONFIG_NAME="Doxyfile.doxygen" - -inherit docs qmake-utils - -DESCRIPTION="3D plotting library for Qt5" -HOMEPAGE="http://qwtplot3d.sourceforge.net/ https://github.com/SciDAVis/qwtplot3d/" -SRC_URI="https://github.com/SciDAVis/qwtplot3d/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="ZLIB" -KEYWORDS="~amd64 ~x86" -SLOT="0" - -IUSE="doc examples" - -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}-examples.patch" - "${FILESDIR}/${PN}-doxygen.patch" - "${FILESDIR}/${PN}-gcc44.patch" - "${FILESDIR}/${PN}-qt-4.8.0.patch" - "${FILESDIR}/${PN}-sys-gl2ps.patch" -) - -src_prepare() { - default - cat >> ${PN}.pro <<-EOF || die - target.path = "${EPREFIX}/usr/$(get_libdir)" - headers.path = "${EPREFIX}/usr/include/${PN}" - headers.files = \$\$HEADERS - INSTALLS = target headers - EOF -} - -src_configure() { - eqmake5 -} - -src_compile() { - default - docs_compile -} - -src_install () { - emake INSTALL_ROOT="${D}" install - einstalldocs - if use examples; then - insinto /usr/share/${PN} - doins -r examples - fi -} |