Diff yudit-2.9.6 with a yudit-3.1.0

/usr/portage/app-editors/yudit/yudit-3.1.0.ebuild 2023-10-09 14:52:28.668368329 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6 6
DESCRIPTION="Free (Y)unicode text editor for all unices"
7
HOMEPAGE="http://www.yudit.org/"
8
SRC_URI="http://yudit.org/download/${P}.tar.gz"
7
HOMEPAGE="https://www.yudit.org/"
8
SRC_URI="https://yudit.org/download/${P}.tar.gz"
9 9

  
10 10
LICENSE="GPL-2"
11 11
SLOT="0"
......
17 17

  
18 18
src_prepare() {
19 19
	default
20
	#Don't strip binaries, let portage do that.
20
	# Don't strip binaries, let portage do that.
21 21
	sed -i "/^INSTALL_PROGRAM/s: -s::" Makefile.conf.in || die "sed failed"
22 22
}
23 23

  
24 24
src_install() {
25 25
	emake DESTDIR="${D}" install
26
	dodoc {BUGS,CHANGELOG,NEWS,TODO,XBUGS}.TXT
26
	dodoc {BUGS,CHANGELOG,NEWS,TODO}.TXT
27 27
}
Thank you!