Сравнение vimpc-0.09.2_p20230330 с vimpc-9999

/usr/portage/media-sound/vimpc/vimpc-9999.ebuild 2026-05-04 19:17:04.967097417 +0300
5 5

  
6 6
inherit autotools
7 7

  
8
DESCRIPTION="ncurses based mpd client with vi-like key bindings"
8
DESCRIPTION="An ncurses based mpd client with vi-like key bindings"
9 9
HOMEPAGE="https://github.com/boysetsfrog/vimpc"
10
if [[ ${PV} == *9999* ]] ; then
10
if [[ ${PV} == 9999 ]] ; then
11 11
	EGIT_REPO_URI="https://github.com/boysetsfrog/${PN}.git"
12 12
	inherit git-r3
13 13
else
14
	COMMIT=95ad78d112316a1c290a480481fd1f8abf50b59b
15
	if [[ -n ${COMMIT} ]] ; then
16
		SRC_URI="https://github.com/boysetsfrog/${PN}/archive/${COMMIT}.tar.gz -> ${P}-${COMMIT:0:8}.tar.gz"
17
		S="${WORKDIR}/${PN}-${COMMIT}"
18
	else
19
		SRC_URI="https://github.com/boysetsfrog/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
20
	fi
21
	KEYWORDS="amd64 x86"
14
	SRC_URI="https://github.com/boysetsfrog/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
15
	KEYWORDS="~amd64 ~x86"
22 16
fi
23 17

  
24 18
LICENSE="GPL-3+"
25 19
SLOT="0"
26
IUSE="taglib"
20
IUSE="boost taglib"
27 21

  
28 22
RDEPEND="
29 23
	dev-libs/libpcre
30 24
	media-libs/libmpdclient
25
	boost? ( dev-libs/boost:= )
31 26
	taglib? ( media-libs/taglib:= )
32 27
"
33 28
DEPEND="${RDEPEND}"
......
39 34

  
40 35
src_prepare() {
41 36
	default
42
	rm m4/m4_ax_boost* || die
43 37
	eautoreconf
44 38
}
45 39

  
......
47 41
	# Tests here seem to make cppunit linked into the main vimpc binary
48 42
	# Not clear how to run them either
49 43
	econf \
50
		--disable-boost \
51
		--disable-test \
52
		$(use_enable taglib)
44
		$(use_enable boost) \
45
		$(use_enable taglib) \
46
		--disable-test
53 47
}
54 48

  
55 49
src_install() {
Спасибо!