Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-mathematics/wxmaxima/
Date: Mon, 08 Feb 2021 06:18:35
Message-Id: 1612765103.95a4309829c40125b3778b0a0d892bada21d2dfb.grozin@gentoo
1 commit: 95a4309829c40125b3778b0a0d892bada21d2dfb
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 8 06:18:23 2021 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 8 06:18:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a43098
7
8 sci-mathematics/wxmaxima: bump to 21.01.0
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
12
13 sci-mathematics/wxmaxima/Manifest | 1 +
14 sci-mathematics/wxmaxima/wxmaxima-21.01.0.ebuild | 51 ++++++++++++++++++++++++
15 2 files changed, 52 insertions(+)
16
17 diff --git a/sci-mathematics/wxmaxima/Manifest b/sci-mathematics/wxmaxima/Manifest
18 index 14ca398e078..3ce40b0e509 100644
19 --- a/sci-mathematics/wxmaxima/Manifest
20 +++ b/sci-mathematics/wxmaxima/Manifest
21 @@ -1,2 +1,3 @@
22 DIST wxmaxima-18.11.4.tar.gz 12156776 BLAKE2B 75be0fb88402af011885616a646f7abcad25516ea9b0b375daf02edac5518b113188290262bc431e8bfb4836fc1f731982a1c41c62871818e4d2cc68c96ccb31 SHA512 964de93edc5c46e98de3de405b1873fa0ed594d54f1ddc030377b023110261cb1e6b0b08dbf210551888bf890e28d16e9b1698768c93dde413d5e1918cbd234e
23 DIST wxmaxima-20.12.2.tar.gz 16262617 BLAKE2B 2f9f910f565158b2011f014d96747498c6286a95bdb69f9b6b2f82a37a569e8a02abbae5cbb9ae2ac1e78d0b976487666794b267c1c40c1245df08c752486403 SHA512 1c3e3f68a2fa2cd798dfb05c52e7ddf3193a15cb45282553c280914bd524d463ad27acc89898cb4a292ff236699d1ec2abb70d83fa52cb126123ab8e2fcd5ceb
24 +DIST wxmaxima-21.01.0.tar.gz 16220587 BLAKE2B b987e8c44c253484d152092093ab9154b7c2a5817c584bc1a4f4a0e5beec3ec2e0bc6995aea6ba28df2223b039ca97905225cc2524840174b2c99a5f7774dab2 SHA512 aec5aa5d3a9883e9b21b890c133684004576411a8341f3913ae548175979ad1f07a16d0fccd24c7757d40f4d06b4070b00fa7ef54f73f26b99c825e03e2a408b
25
26 diff --git a/sci-mathematics/wxmaxima/wxmaxima-21.01.0.ebuild b/sci-mathematics/wxmaxima/wxmaxima-21.01.0.ebuild
27 new file mode 100644
28 index 00000000000..a76a6aeeb04
29 --- /dev/null
30 +++ b/sci-mathematics/wxmaxima/wxmaxima-21.01.0.ebuild
31 @@ -0,0 +1,51 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +WX_GTK_VER="3.0-gtk3"
37 +PLOCALES="ca cs da de el en es fi fr gl hu it ja kab nb pl pt_BR ru tr uk zh_CN zh_TW"
38 +inherit cmake wxwidgets l10n xdg
39 +
40 +DESCRIPTION="Graphical frontend to Maxima, using the wxWidgets toolkit"
41 +HOMEPAGE="https://wxmaxima-developers.github.io/wxmaxima/"
42 +SRC_URI="https://github.com/wxMaxima-developers/wxmaxima/archive/Version-${PV}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="GPL-2"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~ppc ~x86"
47 +IUSE=""
48 +S="${WORKDIR}"/${PN}-Version-${PV}
49 +
50 +DEPEND="
51 + dev-libs/libxml2:2
52 + x11-libs/wxGTK:${WX_GTK_VER}"
53 +RDEPEND="${DEPEND}
54 + media-fonts/jsmath
55 + sci-visualization/gnuplot[wxwidgets]
56 + sci-mathematics/maxima"
57 +
58 +src_prepare() {
59 + setup-wxwidgets
60 + cmake_src_prepare
61 +
62 + sed -e "s|GPL.txt ||g" -e "s|share/doc/${PN}|share/doc/${PF}|g" -i CMakeLists.txt \
63 + || die "sed CMakeLists.txt failed"
64 + sed -e "s|share/doc/${PN}|share/doc/${PF}|g" -i info/CMakeLists.txt \
65 + || die "sed info/CMakeLists.txt failed"
66 +
67 + # locales
68 + rm_po() {
69 + rm locales/wxMaxima/${1}.po || die "rm ${1}.po failed"
70 + rm -f locales/manual/${1}.po
71 + rm -f info/${PN}.${1}.md
72 + rm -f info/${PN}.${1}.html
73 + sed -e "\\|/${1}/wxmaxima.1|d" -i data/CMakeLists.txt
74 + }
75 + l10n_find_plocales_changes locales/wxMaxima '' '.po'
76 + l10n_for_each_disabled_locale_do rm_po
77 +}
78 +
79 +src_install() {
80 + docompress -x /usr/share/doc/${PF}
81 + cmake_src_install
82 +}