Diff poke-2.90.1 with a poke-3.0

/usr/portage/dev-util/poke/poke-3.0.ebuild 2023-10-09 14:52:30.988368388 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit elisp-common flag-o-matic
6
inherit elisp-common flag-o-matic toolchain-funcs
7 7

  
8 8
DESCRIPTION="Extensible editor for structured binary data"
9 9
HOMEPAGE="https://www.jemarch.net/poke"
......
50 50
BDEPEND="
51 51
	${REGEN_BDEPEND}
52 52
	virtual/pkgconfig
53
	pvm-profiling? ( sys-devel/gcc )
53 54
	emacs? ( >=app-editors/emacs-23.1:* )
54 55
	test? (
55 56
		dev-util/dejagnu
......
59 60

  
60 61
SITEFILE="50${PN}-gentoo.el"
61 62

  
63
pkg_pretend() {
64
	if use pvm-profiling && ! tc-is-gcc; then
65
		die "USE=pvm-profiling requires GCC"
66
	fi
67
}
68

  
62 69
pkg_setup() {
63 70
	use emacs && elisp-check-emacs-version
64 71
}
Thank you!