Gentoo Archives: gentoo-commits

From: Sebastian Pipping <sping@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libspnav/
Date: Sun, 06 Feb 2022 18:48:36
Message-Id: 1644173221.d1648dc81f8266f97d8324ca7bfd1fef281d7277.sping@gentoo
1 commit: d1648dc81f8266f97d8324ca7bfd1fef281d7277
2 Author: Sebastian Pipping <sping <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 6 18:47:01 2022 +0000
4 Commit: Sebastian Pipping <sping <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 6 18:47:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1648dc8
7
8 dev-libs/libspnav: 0.3
9
10 Signed-off-by: Sebastian Pipping <sping <AT> gentoo.org>
11 Package-Manager: Portage-3.0.30, Repoman-3.0.3
12
13 dev-libs/libspnav/Manifest | 1 +
14 dev-libs/libspnav/libspnav-0.3.ebuild | 53 +++++++++++++++++++++++++++++++++++
15 2 files changed, 54 insertions(+)
16
17 diff --git a/dev-libs/libspnav/Manifest b/dev-libs/libspnav/Manifest
18 index be11295bb56b..9cedbf01f446 100644
19 --- a/dev-libs/libspnav/Manifest
20 +++ b/dev-libs/libspnav/Manifest
21 @@ -1 +1,2 @@
22 DIST libspnav-0.2.3.tar.gz 11985 BLAKE2B 134a0c3f7c9a7ef7c4f68910e0266880958e2b74e253b75237b0fa8d3e482bcd1f42e715b85f0ffca3a62103530e854090818564d9c241bfc55de039cc4883ee SHA512 b2c452d979d455fc99bfdc172c8a2408a6e8dc40acc52964fa64f4d75a8ee77dda12e5e212c0c4e07a0a24d055f16f85bb6ce6287e24e6bd0665de457e37e6a7
23 +DIST libspnav-0.3.tar.gz 12386 BLAKE2B 6598e0eb3cb41c9e13f0cb62715cd199d2fff0903d8f62726fa82227f2aa49f4dc41083929cbdde18974dfb08c23947158b465bb552c12ea8c9f9fd754962c2b SHA512 1bd61c1ccda37af9b3eaeda6d8f269777f7d13b1c3d3ed4d194b917199bd232d79c9513bcdae6fce6c298ad8460c095a98e3cfd98ee76e1852fc0e93e478c252
24
25 diff --git a/dev-libs/libspnav/libspnav-0.3.ebuild b/dev-libs/libspnav/libspnav-0.3.ebuild
26 new file mode 100644
27 index 000000000000..c4af54f4d64b
28 --- /dev/null
29 +++ b/dev-libs/libspnav/libspnav-0.3.ebuild
30 @@ -0,0 +1,53 @@
31 +# Copyright 1999-2022 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +
36 +inherit toolchain-funcs
37 +
38 +MY_PN='spacenav'
39 +DESCRIPTION="libspnav is a replacement for the magellan library with a cleaner API"
40 +HOMEPAGE="http://spacenav.sourceforge.net/"
41 +SRC_URI="https://github.com/FreeSpacenav/libspnav/releases/download/v${PV}/libspnav-${PV}.tar.gz"
42 +LICENSE="BSD"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
45 +IUSE="static-libs X"
46 +
47 +CDEPEND="X? ( x11-libs/libX11 )"
48 +RDEPEND="app-misc/spacenavd[X?]
49 + ${CDEPEND}"
50 +DEPEND="${CDEPEND}"
51 +
52 +src_configure() {
53 + local args=(
54 + --disable-opt
55 + --disable-debug
56 + $(use_enable X x11)
57 + )
58 + econf "${args[@]}"
59 +}
60 +
61 +src_compile() {
62 + local args=(
63 + AR="$(tc-getAR)"
64 + CC="$(tc-getCC)"
65 + incpaths=-I.
66 + libpaths=
67 + )
68 + emake "${args[@]}"
69 +}
70 +
71 +src_install() {
72 + local args=(
73 + DESTDIR="${D}"
74 + libdir="$(get_libdir)"
75 + )
76 + emake "${args[@]}" install
77 +
78 + # The custom configure script does not support --disable-static
79 + # and conditionally patching $(lib_a) out of Makefile.in does not
80 + # seem like a very maintainable option, hence we delete the .a file
81 + # after "make install", instead.
82 + use static-libs || find "${D}" -type f -name \*.a -delete
83 +}