commit:     8e36d33965b58ab7e2bfbe9caf7ca2f0603d1097
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 14 10:13:59 2022 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Jun 14 12:43:13 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e36d339

sci-libs/indilib: Use udev_reload, switch to media-libs/libjpeg-turbo

Closes: https://bugs.gentoo.org/847643
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 sci-libs/indilib/indilib-1.9.6-r1.ebuild | 77 ++++++++++++++++++++++++++++++++
 1 file changed, 77 insertions(+)

diff --git a/sci-libs/indilib/indilib-1.9.6-r1.ebuild 
b/sci-libs/indilib/indilib-1.9.6-r1.ebuild
new file mode 100644
index 000000000000..9b77579efd30
--- /dev/null
+++ b/sci-libs/indilib/indilib-1.9.6-r1.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake udev
+
+DESCRIPTION="INDI Astronomical Control Protocol library"
+HOMEPAGE="https://www.indilib.org/";
+SRC_URI="https://github.com/${PN}/${PN/lib/}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${P/lib/}"
+
+LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+"
+SLOT="0/1"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~x86"
+IUSE="ogg rtlsdr test websocket"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+       media-libs/libjpeg-turbo:=
+       net-misc/curl
+       sci-libs/cfitsio:=
+       sci-libs/fftw:3.0=
+       sci-libs/gsl:=
+       sci-libs/libnova:=
+       sys-libs/zlib
+       virtual/libusb:0
+       ogg? (
+               media-libs/libogg
+               media-libs/libtheora
+       )
+       rtlsdr? ( net-wireless/rtl-sdr )
+       websocket? ( dev-libs/boost:= )
+"
+DEPEND="${RDEPEND}
+       kernel_linux? ( sys-kernel/linux-headers )
+       test? ( >=dev-cpp/gtest-1.8.0 )
+       websocket? ( dev-cpp/websocketpp )
+"
+
+src_configure() {
+       local mycmakeargs=(
+               -DINDI_BUILD_QT5_CLIENT=OFF
+               -DUDEVRULES_INSTALL_DIR="${EPREFIX}$(get_udevdir)"/rules.d
+               $(cmake_use_find_package ogg OggTheora)
+               $(cmake_use_find_package rtlsdr RTLSDR)
+               -DINDI_BUILD_UNITTESTS=$(usex test)
+               -DINDI_BUILD_WEBSOCKET=$(usex websocket)
+       )
+
+       cmake_src_configure
+}
+
+src_test() {
+       local myctestargs=()
+
+       if use ppc || use ppc64 || use sparc ; then
+               # Broken on big endian for quite some time.
+               # Reported upstream: file needs to be replaced w/ a normal 
library
+               # for b64.
+               # bug #763126
+               myctestargs+=(
+                       -E "(test_base64)"
+               )
+       fi
+
+       BUILD_DIR="${BUILD_DIR}"/test cmake_src_test
+}
+
+pkg_postinst() {
+       udev_reload
+}
+
+pkg_postrm() {
+       udev_reload
+}

Reply via email to