diff options
author | 2022-04-15 12:10:15 +0200 | |
---|---|---|
committer | 2022-04-15 12:11:36 +0200 | |
commit | ca69be7a1761c0797a7010456823352b4ccdab82 (patch) | |
tree | 520f27fedfd053b90db87f3aae7ad92984a9806a | |
parent | sci-chemistry/openbabel: Resurect opebabel[python] (diff) | |
download | gentoo-ca69be7a1761c0797a7010456823352b4ccdab82.tar.gz gentoo-ca69be7a1761c0797a7010456823352b4ccdab82.tar.bz2 gentoo-ca69be7a1761c0797a7010456823352b4ccdab82.zip |
dev-libs/libspnav: Fix pkg-config libdir
Closes: https://bugs.gentoo.org/838349
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Package-Manager: Portage-3.0.30, Repoman-3.0.3
-rw-r--r-- | dev-libs/libspnav/libspnav-1.0-r1.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/dev-libs/libspnav/libspnav-1.0-r1.ebuild b/dev-libs/libspnav/libspnav-1.0-r1.ebuild new file mode 100644 index 000000000000..c11540c54500 --- /dev/null +++ b/dev-libs/libspnav/libspnav-1.0-r1.ebuild @@ -0,0 +1,60 @@ +# 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}" + +PATCHES=( + "${FILESDIR}"/${P}-no-xorg-compile.patch +) + +src_configure() { + local args=( + --disable-opt + --disable-debug + $(use_enable X x11) + ) + econf "${args[@]}" + + # https://bugs.gentoo.org/838349 + sed "/^Libs:/ s,/lib,/$(get_libdir)," -i spnav.pc || die +} + +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 +} |