Diff blahtexml-0.9 with a blahtexml-1.0

/usr/portage/app-text/blahtexml/blahtexml-1.0.ebuild 2023-10-09 14:52:28.868368334 +0300
1
# Copyright 1999-2022 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit toolchain-funcs
7 7

  
8 8
DESCRIPTION="TeX-to-MathML converter"
9 9
HOMEPAGE="http://gva.noekeon.org/blahtexml"
10
SRC_URI="http://gva.noekeon.org/${PN}/${P}-src.tar.gz"
10
SRC_URI="https://github.com/gvanas/blahtexml/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
11 11

  
12 12
LICENSE="BSD CC-BY-3.0 ZLIB"
13 13
SLOT="0"
......
20 20
	virtual/pkgconfig
21 21
	doc? (
22 22
		app-text/texlive-core
23
		dev-texlive/texlive-latexextra
23 24
		dev-libs/libxslt
24 25
		dev-tex/latex2html
25 26
	)
26 27
"
27 28

  
28 29
PATCHES=(
29
	"${FILESDIR}"/${P}-{Makefile,gcc-4.7}.patch
30
	"${FILESDIR}"/${PN}-0.9-Makefile.patch
30 31
)
31 32

  
32 33
src_prepare() {
Thank you!