Diff minicom-2.8-r2 with a minicom-2.8-r4

/usr/portage/net-dialup/minicom/minicom-2.8-r4.ebuild 2023-10-09 14:52:33.352368447 +0300
7 7

  
8 8
DESCRIPTION="Serial Communication Program"
9 9
HOMEPAGE="https://salsa.debian.org/minicom-team/minicom"
10
SRC_URI="https://salsa.debian.org/${PN}-team/${PN}/-/archive/${PV}/${P}.tar.gz"
10
SRC_URI="
11
	https://salsa.debian.org/${PN}-team/${PN}/-/archive/${PV}/${P}.tar.gz
12
	https://dev.gentoo.org/~ceamac/${CATEGORY}/${PN}/${PN}-m4-${PV}.tar.bz2
13
"
11 14

  
12 15
LICENSE="GPL-2"
13 16
SLOT="0"
14
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
17
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
15 18
IUSE="nls"
16 19

  
17 20
DEPEND="sys-libs/ncurses:="
......
29 32
PATCHES=(
30 33
	"${FILESDIR}"/${PN}-2.8-gentoo-runscript.patch
31 34
	"${FILESDIR}"/${PN}-2.8-lockdir.patch
35
	"${FILESDIR}"/${PN}-2.8-enable-large-file.patch
32 36
)
33 37

  
34 38
src_prepare() {
35 39
	default
40

  
41
	# 912459
42
	# Embed the needed m4 macros if gettext is not installed
43
	mv "${WORKDIR}"/m4 . || die
44

  
36 45
	eautoreconf
37 46
}
38 47

  
Thank you!