Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/indilib/
Date: Wed, 01 Jan 2020 07:55:51
Message-Id: 1577865314.ef84422df6ce27d7943976b0b33def2b76b301ac.asturm@gentoo
1 commit: ef84422df6ce27d7943976b0b33def2b76b301ac
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 31 22:28:08 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 1 07:55:14 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef84422d
7
8 sci-libs/indilib: Drop 1.8.2-r1
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 sci-libs/indilib/indilib-1.8.2-r1.ebuild | 56 --------------------------------
14 1 file changed, 56 deletions(-)
15
16 diff --git a/sci-libs/indilib/indilib-1.8.2-r1.ebuild b/sci-libs/indilib/indilib-1.8.2-r1.ebuild
17 deleted file mode 100644
18 index f87a13da483..00000000000
19 --- a/sci-libs/indilib/indilib-1.8.2-r1.ebuild
20 +++ /dev/null
21 @@ -1,56 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit cmake udev
28 -
29 -DESCRIPTION="INDI Astronomical Control Protocol library"
30 -HOMEPAGE="https://www.indilib.org/"
31 -SRC_URI="https://github.com/${PN}/${PN/lib/}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="BSD GPL-2+ LGPL-2+ LGPL-2.1+"
34 -SLOT="0/1"
35 -KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
36 -IUSE="ogg test websocket"
37 -
38 -RDEPEND="
39 - net-misc/curl
40 - sci-libs/cfitsio:=
41 - sci-libs/fftw:3.0=
42 - sci-libs/gsl:=
43 - sci-libs/libnova:=
44 - sys-libs/zlib
45 - virtual/jpeg:0
46 - virtual/libusb:0
47 - ogg? (
48 - media-libs/libogg
49 - media-libs/libtheora
50 - )
51 - websocket? ( dev-libs/boost:= )
52 -"
53 -DEPEND="${RDEPEND}
54 - kernel_linux? ( sys-kernel/linux-headers )
55 - test? ( >=dev-cpp/gtest-1.8.0 )
56 - websocket? ( dev-cpp/websocketpp )
57 -"
58 -
59 -RESTRICT="!test? ( test )"
60 -
61 -S="${WORKDIR}/${P/lib/}"
62 -
63 -src_configure() {
64 - local mycmakeargs=(
65 - -DINDI_BUILD_QT5_CLIENT=OFF
66 - -DINDI_BUILD_UNITTESTS=$(usex test)
67 - -DUDEVRULES_INSTALL_DIR="$(get_udevdir)"
68 - $(cmake_use_find_package ogg OggTheora)
69 - -DINDI_BUILD_WEBSOCKET=$(usex websocket)
70 - )
71 -
72 - cmake_src_configure
73 -}
74 -
75 -src_test() {
76 - BUILD_DIR="${BUILD_DIR}"/test cmake_src_test
77 -}