From 954c61ffc4a2edfde2d47dfc4bdc8bacdb48af2e Mon Sep 17 00:00:00 2001 From: Victor Kustov Date: Sun, 7 Jan 2024 11:21:12 +0300 Subject: sci-electronics/librepcb: add virtual/opengl deps Bug: https://bugs.gentoo.org/921347 Signed-off-by: Victor Kustov Closes: https://github.com/gentoo/gentoo/pull/34691 Signed-off-by: Andrew Ammerlaan --- sci-electronics/librepcb/librepcb-1.0.0-r1.ebuild | 68 ----------------------- 1 file changed, 68 deletions(-) delete mode 100644 sci-electronics/librepcb/librepcb-1.0.0-r1.ebuild (limited to 'sci-electronics/librepcb/librepcb-1.0.0-r1.ebuild') diff --git a/sci-electronics/librepcb/librepcb-1.0.0-r1.ebuild b/sci-electronics/librepcb/librepcb-1.0.0-r1.ebuild deleted file mode 100644 index ba797def47ac..000000000000 --- a/sci-electronics/librepcb/librepcb-1.0.0-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 2009-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake virtualx xdg - -DESCRIPTION="Free EDA software to develop printed circuit boards" -HOMEPAGE="https://librepcb.org/" -SRC_URI="https://download.librepcb.org/releases/${PV}/${P}-source.zip" - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64" - -IUSE="opencascade" - -BDEPEND=" - app-arch/unzip - dev-qt/linguist-tools:5" - -RDEPEND=" - dev-cpp/muParser:= - dev-libs/quazip:=[qt5(+)] - dev-qt/qtconcurrent:5 - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtnetwork:5[ssl] - dev-qt/qtopengl:5 - dev-qt/qtprintsupport:5 - dev-qt/qtquickcontrols2:5 - dev-qt/qtsql:5 - dev-qt/qtsvg:5 - dev-qt/qtwidgets:5 - dev-qt/qtxml:5 - opencascade? ( sci-libs/opencascade:= ) - sys-libs/zlib" - -DEPEND="${RDEPEND} - dev-qt/qttest:5" - -S="${WORKDIR}/${PN}-${PV/_/-}" - -src_configure() { - local mycmakeargs+=( - -DUSE_OPENCASCADE=$(usex opencascade 1 0) - -DUNBUNDLE_QUAZIP=ON - -DUNBUNDLE_MUPARSER=ON ) - cmake_src_configure -} - -src_test() { - cd "${BUILD_DIR}"/tests/unittests || die - # https://github.com/LibrePCB/LibrePCB/issues/516 - # virtx ./librepcb-unittests --gtest_filter=-SystemInfoTest.testGetUsername - virtx ./librepcb-unittests --gtest_filter=-SystemInfoTest.testGetUsername:CategoryTreeModelTest.testSort:BoardPlaneFragmentsBuilderTest.testFragments:BoardGerberExportTest.test -} - -pkg_postinst() { - xdg_pkg_postinst - - ewarn - ewarn "LibrePCB builds might not be exactly reproducible with e.g. -march={native,haswell,...}." - ewarn "This can cause minor issues, see for example:" - ewarn "https://github.com/LibrePCB/LibrePCB/issues/516" - ewarn "For a completely reproducible build use: -march=x86-64." - ewarn -} -- cgit v1.2.3-65-gdbad