From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E5B6813835A for ; Mon, 5 Oct 2020 22:10:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33AC3E0893; Mon, 5 Oct 2020 22:10:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1641E0893 for ; Mon, 5 Oct 2020 22:10:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8F47B340AB2 for ; Mon, 5 Oct 2020 22:10:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 08E39391 for ; Mon, 5 Oct 2020 22:10:32 +0000 (UTC) From: "Maciej Mrozowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Mrozowski" Message-ID: <1601935619.af3bcec777265d2754895b20f986e42ad038f75c.reavertm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/quarter/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/quarter/Manifest media-libs/quarter/metadata.xml media-libs/quarter/quarter-1.1.0.ebuild X-VCS-Directories: media-libs/quarter/ X-VCS-Committer: reavertm X-VCS-Committer-Name: Maciej Mrozowski X-VCS-Revision: af3bcec777265d2754895b20f986e42ad038f75c X-VCS-Branch: master Date: Mon, 5 Oct 2020 22:10:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9cb16481-a811-4c1a-8b44-6875568f53d1 X-Archives-Hash: 9f6cb29a473924209fd23e7ef3f4f16b commit: af3bcec777265d2754895b20f986e42ad038f75c Author: Maciej Mrozowski gentoo org> AuthorDate: Mon Oct 5 22:05:22 2020 +0000 Commit: Maciej Mrozowski gentoo org> CommitDate: Mon Oct 5 22:06:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af3bcec7 media-libs/quarter: re-add package Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Maciej Mrozowski gentoo.org> media-libs/quarter/Manifest | 1 + media-libs/quarter/metadata.xml | 22 ++++++++++++ media-libs/quarter/quarter-1.1.0.ebuild | 60 +++++++++++++++++++++++++++++++++ 3 files changed, 83 insertions(+) diff --git a/media-libs/quarter/Manifest b/media-libs/quarter/Manifest new file mode 100644 index 00000000000..6030874d214 --- /dev/null +++ b/media-libs/quarter/Manifest @@ -0,0 +1 @@ +DIST quarter-1.1.0-src.tar.gz 724762 BLAKE2B 8f1f0025706c4502ea178c09204e442b9c52148371863a5a49640ba751084cca9ca464398ee171729d85e8fc2f3fe3ea9d5f0492d114d810527601936abbd1e0 SHA512 2b2649132c66c709e3d5df2a99d621fb9cf61424c5376a5ca6a016ee5c7514841f8bbe390d1acc7b94688a86b56304ed12fb98840e11933162ac6ccb3f3d681c diff --git a/media-libs/quarter/metadata.xml b/media-libs/quarter/metadata.xml new file mode 100644 index 00000000000..a9191913aaa --- /dev/null +++ b/media-libs/quarter/metadata.xml @@ -0,0 +1,22 @@ + + + + + reavertm@gentoo.org + Feel free to maintain/fix + + + Quarter is a light-weight glue library that provides seamless + integration between Systems in Motions's Coin high-level 3D + visualization library and Trolltech's Qt 2D user interface library. + It supersedes previous Qt binding - SoQt - by subclassing QGLWidget. + + + Install plugin for dev-qt/designer + Build and install man pages + Build API documentation in QtHelp format + + + coin3d/quarter + + diff --git a/media-libs/quarter/quarter-1.1.0.ebuild b/media-libs/quarter/quarter-1.1.0.ebuild new file mode 100644 index 00000000000..d52e90e73ea --- /dev/null +++ b/media-libs/quarter/quarter-1.1.0.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake flag-o-matic + +MY_P=${P/quarter/Quarter} + +HOMEPAGE="https://github.com/coin3d/coin/wiki" +DESCRIPTION="GUI binding for using Coin/Open Inventor with Qt" +SRC_URI="https://github.com/coin3d/quarter/releases/download/${MY_P}/${P}-src.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="debug designer doc man qthelp" + +REQUIRED_USE=" + man? ( doc ) + qthelp? ( doc ) +" + +RDEPEND=" + media-libs/coin + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtwidgets:5 + dev-qt/qtopengl:5 + virtual/opengl + designer? ( dev-qt/designer:5 ) +" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( + app-doc/doxygen + qthelp? ( dev-qt/qthelp:5 ) + ) +" + +S="${WORKDIR}/quarter" + +DOCS=(AUTHORS ChangeLog NEWS README) + +src_configure() { + use debug && append-cppflags -DQUARTER_DEBUG=1 + local mycmakeargs=( + -DCMAKE_INSTALL_DOCDIR="${EPREFIX}/usr/share/doc/${PF}" + -DQUARTER_BUILD_SHARED_LIBS=ON + -DQUARTER_BUILD_PLUGIN=ON + -DQUARTER_BUILD_EXAMPLES=OFF + -DQUARTER_BUILD_DOCUMENTATION=$(usex doc) + -DQUARTER_BUILD_INTERNAL_DOCUMENTATION=OFF + -DQUARTER_BUILD_DOC_MAN=$(usex man) + -DQUARTER_BUILD_DOC_QTHELP=$(usex qthelp) + -DQUARTER_BUILD_DOC_CHM=OFF + -DQUARTER_USE_QT5=ON + ) + cmake_src_configure +}