Diff bower-0.12 with a bower-1.0

/usr/portage/mail-client/bower/bower-1.0.ebuild 2024-12-25 14:59:49.699270105 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2024 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 multiprocessing
7 7

  
......
12 12
LICENSE="GPL-3+"
13 13
SLOT="0"
14 14
KEYWORDS="amd64"
15
IUSE=""
16 15

  
17 16
COMMON_DEPEND="app-crypt/gpgme:=
18 17
	sys-libs/ncurses:0="
......
21 20
RDEPEND="${COMMON_DEPEND}
22 21
	net-mail/notmuch
23 22
	sys-apps/coreutils"
23
BDEPEND="virtual/pkgconfig"
24 24

  
25 25
src_prepare() {
26 26
	default
27
	if has_version "sys-libs/ncurses:0[tinfo]" ; then
28
		echo "MLLIBS-bower += -ltinfow" >> src/Mercury.params || die
29
	fi
27
	sed -e "s/-lncursesw -lpanelw/$(pkg-config --libs ncursesw panelw)/" \
28
		-i src/Mercury.options || die
30 29
}
31 30

  
32 31
src_compile() {
Thank you!