diff options
author | 2022-02-06 19:47:01 +0100 | |
---|---|---|
committer | 2022-02-06 19:47:01 +0100 | |
commit | d1648dc81f8266f97d8324ca7bfd1fef281d7277 (patch) | |
tree | e989f655846cc628f4037653b3fb4de1f3e269c2 /dev-libs/libspnav/libspnav-0.3.ebuild | |
parent | dev-lang/spark: drop python deps (diff) | |
download | gentoo-d1648dc81f8266f97d8324ca7bfd1fef281d7277.tar.gz gentoo-d1648dc81f8266f97d8324ca7bfd1fef281d7277.tar.bz2 gentoo-d1648dc81f8266f97d8324ca7bfd1fef281d7277.zip |
dev-libs/libspnav: 0.3
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Diffstat (limited to 'dev-libs/libspnav/libspnav-0.3.ebuild')
-rw-r--r-- | dev-libs/libspnav/libspnav-0.3.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/dev-libs/libspnav/libspnav-0.3.ebuild b/dev-libs/libspnav/libspnav-0.3.ebuild new file mode 100644 index 000000000000..c4af54f4d64b --- /dev/null +++ b/dev-libs/libspnav/libspnav-0.3.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit toolchain-funcs + +MY_PN='spacenav' +DESCRIPTION="libspnav is a replacement for the magellan library with a cleaner API" +HOMEPAGE="http://spacenav.sourceforge.net/" +SRC_URI="https://github.com/FreeSpacenav/libspnav/releases/download/v${PV}/libspnav-${PV}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86" +IUSE="static-libs X" + +CDEPEND="X? ( x11-libs/libX11 )" +RDEPEND="app-misc/spacenavd[X?] + ${CDEPEND}" +DEPEND="${CDEPEND}" + +src_configure() { + local args=( + --disable-opt + --disable-debug + $(use_enable X x11) + ) + econf "${args[@]}" +} + +src_compile() { + local args=( + AR="$(tc-getAR)" + CC="$(tc-getCC)" + incpaths=-I. + libpaths= + ) + emake "${args[@]}" +} + +src_install() { + local args=( + DESTDIR="${D}" + libdir="$(get_libdir)" + ) + emake "${args[@]}" install + + # The custom configure script does not support --disable-static + # and conditionally patching $(lib_a) out of Makefile.in does not + # seem like a very maintainable option, hence we delete the .a file + # after "make install", instead. + use static-libs || find "${D}" -type f -name \*.a -delete +} |