commit:     b92145a1dc082e5821e9d812fbf244be5a7343a4
Author:     Zoltan Puskas <zoltan <AT> sinustrom <DOT> info>
AuthorDate: Thu Feb 20 09:38:56 2025 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 20 10:11:40 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b92145a1

sci-electronics/kicad: add 8.0.9

Signed-off-by: Zoltan Puskas <zoltan <AT> sinustrom.info>
Bug: https://bugs.gentoo.org/949967
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sci-electronics/kicad/Manifest           |   1 +
 sci-electronics/kicad/kicad-8.0.9.ebuild | 184 +++++++++++++++++++++++++++++++
 2 files changed, 185 insertions(+)

diff --git a/sci-electronics/kicad/Manifest b/sci-electronics/kicad/Manifest
index e2d1723e0935..345e806d4a33 100644
--- a/sci-electronics/kicad/Manifest
+++ b/sci-electronics/kicad/Manifest
@@ -1 +1,2 @@
 DIST kicad-8.0.6.tar.bz2 72953578 BLAKE2B 
be13ebeba9b9c8d1316074870e9f58fa8629d6cdc2a9ca9aac20f4bea0b743e8da86e711692515d4a817372822fe7305e426d65d8bf3a7729f2ee039c6b7c0ec
 SHA512 
6c35830c9314b801970a4af4100e3ffc30d1c4eaea9a806f8c23f22d2d3d46743d70b9748b757f0b990b9e394aa97edf45da0d484274faa2f20ba1d83ff6b7b4
+DIST kicad-8.0.9.tar.bz2 73236341 BLAKE2B 
707dd199f0232a383eb70ee565b32fc8f24691006d0bfcebe3cd7e99e8d60b70d12469b26030084c9bf87c4f4fb6ec282f640f14020c0265546c896b456e4750
 SHA512 
cc822c46adea5a3dab3fd6c383c9cc1efebb3e9d1e88a0237caf6e9ef1fd0c249328e9afbf4a138cc19eda1aad864e2854fabd3bf17763109dce57e335be38b2

diff --git a/sci-electronics/kicad/kicad-8.0.9.ebuild 
b/sci-electronics/kicad/kicad-8.0.9.ebuild
new file mode 100644
index 000000000000..5db705be76fe
--- /dev/null
+++ b/sci-electronics/kicad/kicad-8.0.9.ebuild
@@ -0,0 +1,184 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+WX_GTK_VER="3.2-gtk3"
+
+inherit check-reqs cmake flag-o-matic optfeature python-single-r1 
toolchain-funcs wxwidgets xdg-utils
+
+DESCRIPTION="Electronic Schematic and PCB design tools"
+HOMEPAGE="https://www.kicad.org";
+
+if [[ ${PV} == *9999* ]]; then
+       EGIT_REPO_URI="https://gitlab.com/kicad/code/kicad.git";
+       inherit git-r3
+else
+       MY_PV="${PV/_rc/-rc}"
+       MY_P="${PN}-${MY_PV}"
+       
SRC_URI="https://gitlab.com/kicad/code/${PN}/-/archive/${MY_PV}/${MY_P}.tar.bz2";
+       S="${WORKDIR}/${MY_P}"
+
+       if [[ ${PV} != *_rc* ]] ; then
+               KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+       fi
+fi
+
+# BSD for bundled pybind
+LICENSE="GPL-2+ GPL-3+ Boost-1.0 BSD"
+SLOT="0"
+IUSE="doc examples nls openmp test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RESTRICT="!test? ( test )"
+
+# Contains bundled pybind but it's patched for wx
+# See 
https://gitlab.com/kicad/code/kicad/-/commit/74e4370a9b146b21883d6a2d1df46c7a10bd0424
+# Depend on opencascade:0 to get unslotted variant (so we know path to it), 
bug #833301
+# Depend wxGTK version needs to be limited due to switch from EGL to GLX, bug 
#911120
+COMMON_DEPEND="
+       app-crypt/libsecret
+       dev-db/unixODBC
+       dev-libs/boost:=[context,nls]
+       dev-libs/libgit2:=
+       media-libs/freeglut
+       media-libs/glew:0=
+       >=media-libs/glm-0.9.9.1
+       media-libs/mesa[X(+)]
+       net-misc/curl
+       >=sci-libs/opencascade-7.5.0:0=
+       >=x11-libs/cairo-1.8.8:=
+       >=x11-libs/pixman-0.30
+       >sci-electronics/ngspice-27[shared]
+       sys-libs/zlib
+       >=x11-libs/wxGTK-3.2.2.1-r3:${WX_GTK_VER}[X,opengl]
+       $(python_gen_cond_dep '
+               dev-libs/boost:=[context,nls,python,${PYTHON_USEDEP}]
+               >=dev-python/wxpython-4.2.0:*[${PYTHON_USEDEP}]
+       ')
+       ${PYTHON_DEPS}
+       nls? (
+               sys-devel/gettext
+       )
+       test? (
+               media-gfx/cairosvg
+       )
+"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}
+       sci-electronics/electronics-menu
+"
+BDEPEND=">=dev-lang/swig-4.0
+       doc? ( app-text/doxygen )"
+
+if [[ ${PV} == 9999 ]] ; then
+       # x11-misc-util/macros only required on live ebuilds
+       BDEPEND+=" >=x11-misc/util-macros-1.18"
+fi
+
+CHECKREQS_DISK_BUILD="1500M"
+
+pkg_setup() {
+       [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+
+       python-single-r1_pkg_setup
+       check-reqs_pkg_setup
+}
+
+src_unpack() {
+       if [[ ${PV} == 9999 ]]; then
+               git-r3_src_unpack
+       else
+               default_src_unpack
+       fi
+}
+
+src_prepare() {
+       filter-lto # Bug 927482
+       cmake_src_prepare
+}
+
+src_configure() {
+       xdg_environment_reset
+
+       local mycmakeargs=(
+               -DKICAD_DOCS="${EPREFIX}/usr/share/doc/${PN}-doc-${PV}"
+
+               -DKICAD_SCRIPTING_WXPYTHON=ON
+               -DKICAD_USE_EGL=OFF
+
+               -DKICAD_BUILD_I18N="$(usex nls)"
+               -DKICAD_I18N_UNIX_STRICT_PATH="$(usex nls)"
+
+               -DPYTHON_DEST="$(python_get_sitedir)"
+               -DPYTHON_EXECUTABLE="${PYTHON}"
+               -DPYTHON_INCLUDE_DIR="$(python_get_includedir)"
+               -DPYTHON_LIBRARY="$(python_get_library_path)"
+
+               -DKICAD_INSTALL_DEMOS="$(usex examples)"
+               -DCMAKE_SKIP_RPATH="ON"
+
+               -DOCC_INCLUDE_DIR="${CASROOT}"/include/opencascade
+               -DOCC_LIBRARY_DIR="${CASROOT}"/$(get_libdir)/opencascade
+
+               -DKICAD_SPICE_QA="$(usex test)"
+               -DKICAD_BUILD_QA_TESTS="$(usex test)"
+       )
+
+       setup-wxwidgets
+       cmake_src_configure
+}
+
+src_compile() {
+       cmake_src_compile
+       if use doc; then
+               cmake_src_compile doxygen-docs
+       fi
+}
+
+src_test() {
+       # Test cannot find library in Portage's sandbox. Let's create a link so 
test can run.
+       mkdir -p "${BUILD_DIR}/qa/eeschema/" || die
+       ln -s "${BUILD_DIR}/eeschema/_eeschema.kiface" 
"${BUILD_DIR}/qa/eeschema/_eeschema.kiface" || die
+
+       export CMAKE_SKIP_TESTS=(
+               qa_cli
+       )
+
+       # LD_LIBRARY_PATH is there to help it pick up the just-built libraries
+       
LD_LIBRARY_PATH="${BUILD_DIR}/common:${BUILD_DIR}/common/gal:${BUILD_DIR}/3d-viewer/3d_cache/sg:${LD_LIBRARY_PATH}"
 \
+               cmake_src_test
+}
+
+src_install() {
+       cmake_src_install
+       python_optimize
+
+       dodoc doxygen/eagle-plugin-notes.txt
+
+       if use doc ; then
+               cd doxygen || die
+               dodoc -r out/html/.
+       fi
+}
+
+pkg_postinst() {
+       optfeature "Component symbols library" sci-electronics/kicad-symbols
+       optfeature "Component footprints library" 
sci-electronics/kicad-footprints
+       optfeature "3D models of components " sci-electronics/kicad-packages3d
+       optfeature "Project templates" sci-electronics/kicad-templates
+       optfeature "Extended documentation" app-doc/kicad-doc
+       optfeature "Creating 3D models of components" media-gfx/wings
+
+       xdg_desktop_database_update
+       xdg_mimeinfo_database_update
+       xdg_icon_cache_update
+}
+
+pkg_postrm() {
+       xdg_desktop_database_update
+       xdg_mimeinfo_database_update
+       xdg_icon_cache_update
+}

Reply via email to