diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2020-02-16 23:01:46 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2020-02-16 23:05:55 +0100 |
commit | d0dc04c20c3f6148733c46a22d19c4feeeb41994 (patch) | |
tree | 30b208d56882fb2675098642f72b203d7f5c05ca /sci-mathematics/relational/relational-2.5-r2.ebuild | |
parent | app-office/texmaker: Drop 5.0-r1 with wrong dependency on qtwebkit (diff) | |
download | gentoo-d0dc04c20c3f6148733c46a22d19c4feeeb41994.tar.gz gentoo-d0dc04c20c3f6148733c46a22d19c4feeeb41994.tar.bz2 gentoo-d0dc04c20c3f6148733c46a22d19c4feeeb41994.zip |
sci-mathematics/relational: Drop dependency on dev-qt/PyQt5[webkit]
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-mathematics/relational/relational-2.5-r2.ebuild')
-rw-r--r-- | sci-mathematics/relational/relational-2.5-r2.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/sci-mathematics/relational/relational-2.5-r2.ebuild b/sci-mathematics/relational/relational-2.5-r2.ebuild new file mode 100644 index 000000000000..0e073dfe0999 --- /dev/null +++ b/sci-mathematics/relational/relational-2.5-r2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit python-single-r1 + +DESCRIPTION="Educational tool for relational algebra" +HOMEPAGE="https://ltworf.github.io/relational/" +SRC_URI="https://github.com/ltworf/${PN}/releases/download/${PV}/${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +DEPEND="${PYTHON_DEPS} + $(python_gen_cond_dep ' + dev-python/PyQt5[gui,widgets,${PYTHON_MULTI_USEDEP}] + ') +" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${PN}" + +PATCHES=( "${FILESDIR}/${P}-no-qtwebkit.patch" ) + +src_prepare() { + default + + sed -i -e '/^Terminal=/ s/0/false/' \ + -e '/^Keywords=/ s/$/;/' \ + relational.desktop || die +} + +src_install() { + emake -j1 DESTDIR="${ED}" install-{relational-cli,python3-relational,relational} + python_optimize + + dodoc CHANGELOG complexity CREDITS README.md +} |