Diff normalizemime-1.19 with a normalizemime-1.21

/usr/portage/mail-filter/normalizemime/normalizemime-1.21.ebuild 2023-10-09 14:52:31.580368403 +0300
1
# Copyright 1999-2019 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="Helper program to normalize MIME encoded messages"
9 9
HOMEPAGE="http://hyvatti.iki.fi/~jaakko/spam/"
10
SRC_URI="mirror://gentoo/${P}.tar.bz2"
10
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}.cc"
11
S="${WORKDIR}"
11 12

  
12 13
LICENSE="GPL-2"
13 14
SLOT="0"
14
KEYWORDS="amd64 ppc x86"
15
IUSE=""
15
KEYWORDS="~amd64 ~ppc ~x86"
16

  
17
src_unpack() {
18
	cp "${DISTDIR}"/${P}.cc "${WORKDIR}"/${PN}.cc || die
19
}
16 20

  
17 21
src_compile() {
18 22
	tc-export CC
Thank you!