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 40625138334 for ; Wed, 1 Jan 2020 07:55:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 690AAE09DF; Wed, 1 Jan 2020 07:55:47 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 421E1E09DF for ; Wed, 1 Jan 2020 07:55:47 +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 3C94734DE0E for ; Wed, 1 Jan 2020 07:55:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82D5488 for ; Wed, 1 Jan 2020 07:55:42 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1577865313.06f859cbe85c7d020af20631e4da8d6a6750acda.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/indilib/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/indilib/indilib-1.8.2-r2.ebuild X-VCS-Directories: sci-libs/indilib/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 06f859cbe85c7d020af20631e4da8d6a6750acda X-VCS-Branch: master Date: Wed, 1 Jan 2020 07:55:42 +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: 1baf5d09-5cf0-4a2b-88f2-6807423186ef X-Archives-Hash: d34bc3fe747c5a2f50dcca1885deff9b commit: 06f859cbe85c7d020af20631e4da8d6a6750acda Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Dec 31 22:27:37 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jan 1 07:55:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06f859cb sci-libs/indilib: Fix udev rules install path Thanks-to: James Bates gmail.com> Closes: https://bugs.gentoo.org/703952 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> sci-libs/indilib/indilib-1.8.2-r2.ebuild | 56 ++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/sci-libs/indilib/indilib-1.8.2-r2.ebuild b/sci-libs/indilib/indilib-1.8.2-r2.ebuild new file mode 100644 index 00000000000..f8b0dd3086f --- /dev/null +++ b/sci-libs/indilib/indilib-1.8.2-r2.ebuild @@ -0,0 +1,56 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +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" + +LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+" +SLOT="0/1" +KEYWORDS="amd64 ~ppc ~ppc64 ~x86" +IUSE="ogg test websocket" + +RDEPEND=" + net-misc/curl + sci-libs/cfitsio:= + sci-libs/fftw:3.0= + sci-libs/gsl:= + sci-libs/libnova:= + sys-libs/zlib + virtual/jpeg:0 + virtual/libusb:0 + ogg? ( + media-libs/libogg + media-libs/libtheora + ) + websocket? ( dev-libs/boost:= ) +" +DEPEND="${RDEPEND} + kernel_linux? ( sys-kernel/linux-headers ) + test? ( >=dev-cpp/gtest-1.8.0 ) + websocket? ( dev-cpp/websocketpp ) +" + +RESTRICT="!test? ( test )" + +S="${WORKDIR}/${P/lib/}" + +src_configure() { + local mycmakeargs=( + -DINDI_BUILD_QT5_CLIENT=OFF + -DINDI_BUILD_UNITTESTS=$(usex test) + -DUDEVRULES_INSTALL_DIR="$(get_udevdir)"/rules.d + $(cmake_use_find_package ogg OggTheora) + -DINDI_BUILD_WEBSOCKET=$(usex websocket) + ) + + cmake_src_configure +} + +src_test() { + BUILD_DIR="${BUILD_DIR}"/test cmake_src_test +}