commit: 2c897ab38e6dba1724879daf439de888f0fca78b Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Mon Nov 30 02:35:06 2020 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Mon Nov 30 02:35:06 2020 +0000 URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=2c897ab3
media-libs/SoQt: Drop IUSE=qt4, fix SRC_URI, EAPI-7 Package-Manager: Portage-3.0.11, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> media-libs/SoQt/SoQt-1.4.1.ebuild | 59 ++++++++++++++++++++------------------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/media-libs/SoQt/SoQt-1.4.1.ebuild b/media-libs/SoQt/SoQt-1.4.1.ebuild index 819e9c2a..4009f9d4 100644 --- a/media-libs/SoQt/SoQt-1.4.1.ebuild +++ b/media-libs/SoQt/SoQt-1.4.1.ebuild @@ -1,52 +1,53 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/SoQt/SoQt-1.4.1.ebuild,v 1.6 2009/10/29 11:02:54 fauli Exp $ -EAPI="2" +EAPI=7 -inherit flag-o-matic eutils +inherit flag-o-matic -DESCRIPTION="The glue between Coin3D and Qt" -SRC_URI="ftp://ftp.coin3d.org/pub/coin/src/all/${P}.tar.gz" +DESCRIPTION="Glue between Coin3D and Qt" HOMEPAGE="http://www.coin3d.org/" +SRC_URI="https://github.com/coin3d/soqt/archive/${P}.tar.gz" +S="${WORKDIR}/soqt-${P}" -SLOT="0" LICENSE="|| ( GPL-2 PEL )" +SLOT="0" KEYWORDS="~amd64 x86" -IUSE="doc qt4" - -RDEPEND=">=media-libs/coin-2.4.4 - qt4? ( - dev-qt/qtgui:4[qt3support] - dev-qt/qtopengl:4[qt3support] - dev-qt/qt3support:4 - ) - !qt4? ( dev-qt/qt-meta:3[opengl] )" -DEPEND="${RDEPEND} +IUSE="doc" + +RDEPEND=" + dev-qt/qtgui:4[qt3support] + dev-qt/qtopengl:4[qt3support] + dev-qt/qt3support:4 + >=media-libs/coin-2.4.4 +" +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig - doc? ( app-doc/doxygen )" + doc? ( app-doc/doxygen ) +" -src_prepare() { - epatch "${FILESDIR}/${P}-gcc44.patch" -} +PATCHES=( "${FILESDIR}/${P}-gcc44.patch" ) src_configure() { - if use qt4; then - export PATH="/usr/bin/:${PATH}" - export QTDIR="/usr" - export CONFIG_QTLIBS="$(pkg-config --libs QtGui)" - fi + export PATH="/usr/bin/:${PATH}" + export QTDIR="/usr" + export CONFIG_QTLIBS="$(pkg-config --libs QtGui)" append-ldflags $(no-as-needed) - econf --with-coin --disable-html-help $(use_enable doc html) htmldir=/usr/share/doc/${PF}/html + econf \ + --with-coin \ + --disable-html-help\ + $(use_enable doc html) \ + htmldir=/usr/share/doc/${PF}/html } src_compile() { - emake -j1 || die "emake failed" + emake -j1 } src_install() { - emake DESTDIR="${D}" install || die "emake install failed" + emake DESTDIR="${D}" install dodoc AUTHORS ChangeLog NEWS README* }
