You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/SoXt/SoXt-1.3.0-r1.ebuild

48 lines
1.1 KiB

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
HOMEPAGE="http://www.coin3d.org/"
DESCRIPTION="GUI binding for using Coin/Open Inventor with Xt/Motif"
SRC_URI="https://bitbucket.org/Coin3D/coin/downloads/${P}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
SLOT="0"
IUSE="debug doc static-libs"
RDEPEND="
<media-libs/coin-4
x11-libs/motif:0
virtual/opengl"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )"
PATCHES=(
"${FILESDIR}/${PN}-1.3.0-pkgconfig-partial.patch"
)
DOCS=(AUTHORS ChangeLog HACKING NEWS README TODO BUGS.txt)
src_configure() {
local myeconfargs=(
htmldir="${EPREFIX}/usr/share/doc/${PF}/html"
--disable-compact
--disable-html-help
--includedir="$(coin-config --includedir)"
--with-coin
--with-motif
$(use_enable debug)
$(use_enable debug profile)
$(use_enable doc html)
$(use_enable doc man)
)
default
# Remove SoXt from Libs.private (patch installs it in Libs)
sed -i -e '/Libs.private/s/ -lSoXt//' SoXt.pc || die
# Strip the default libdir
sed -i -e "s,-L%{_libdir} ,," soxt-default.cfg || die
}