Diff compsize-1.3 with a compsize-1.4

/usr/portage/sys-fs/compsize/compsize-1.4.ebuild 2023-10-09 14:52:35.504368502 +0300
13 13
	EGIT_REPO_URI="https://github.com/kilobyte/compsize.git"
14 14
else
15 15
	SRC_URI="https://github.com/kilobyte/compsize/archive/v${PV}.tar.gz -> ${P}.tar.gz"
16
	KEYWORDS="amd64 x86"
16
	KEYWORDS="~amd64 ~x86"
17 17
fi
18 18

  
19 19
LICENSE="GPL-2+ GPL-2"
......
29 29
}
30 30

  
31 31
src_configure() {
32
	# Used in upstream Makefile, but clobbered by portage's CFLAGS
33
	append-cflags -Wall -std=gnu90
34
	use debug && append-cflags -DDEBUG -g
32
	use debug && append-cflags -Wall -DDEBUG -g
35 33
	default
36 34
}
37 35

  
38 36
src_install() {
39
	emake PREFIX="${D}" install
40
	dodoc "README.md"
37
	emake PREFIX="${ED}/usr" install
38
	einstalldocs
41 39
}
Thank you!