diff options
author | Guilherme Amadio <amadio@gentoo.org> | 2017-08-29 16:33:42 +0200 |
---|---|---|
committer | Guilherme Amadio <amadio@gentoo.org> | 2017-08-29 16:33:42 +0200 |
commit | c0379aac3800ae0475fe22093828b014cd124b5a (patch) | |
tree | 9051920f7a13d30d7f2f6682de11310f690b6479 /media-libs/SoQt | |
parent | dev-libs/jemalloc: update Darwin install_name fixup (diff) | |
download | gentoo-c0379aac3800ae0475fe22093828b014cd124b5a.tar.gz gentoo-c0379aac3800ae0475fe22093828b014cd124b5a.tar.bz2 gentoo-c0379aac3800ae0475fe22093828b014cd124b5a.zip |
media-libs/SoQt: add prefix support
Package-Manager: Portage-2.3.8, Repoman-2.3.3
Diffstat (limited to 'media-libs/SoQt')
-rw-r--r-- | media-libs/SoQt/SoQt-1.5.0-r1.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/media-libs/SoQt/SoQt-1.5.0-r1.ebuild b/media-libs/SoQt/SoQt-1.5.0-r1.ebuild index 7c8840dc88b2..95494b3c4008 100644 --- a/media-libs/SoQt/SoQt-1.5.0-r1.ebuild +++ b/media-libs/SoQt/SoQt-1.5.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -10,7 +10,7 @@ HOMEPAGE="https://bitbucket.org/Coin3D/soqt" SRC_URI="https://bitbucket.org/Coin3D/coin/downloads/${P}.tar.gz" LICENSE="|| ( GPL-2 PEL )" -KEYWORDS="~amd64 ~arm ~x86" +KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux" SLOT="0" IUSE="debug doc static-libs" @@ -34,13 +34,13 @@ DOCS=(AUTHORS ChangeLog FAQ HACKING NEWS README) src_configure() { local myeconfargs=( - htmldir="/usr/share/doc/${PF}/html" + htmldir="${EPREFIX}/usr/share/doc/${PF}/html" --disable-compact --disable-html-help --disable-loadlibrary --disable-man --enable-pkgconfig - --includedir="/usr/include/coin" + --includedir="${EPREFIX}/usr/include/coin" --with-coin $(use_enable debug) $(use_enable debug symbols) |