Diff linuxsampler-2.2.0 with a linuxsampler-9999

/usr/portage/media-sound/linuxsampler/linuxsampler-9999.ebuild 2023-10-09 14:52:31.784368408 +0300
3 3

  
4 4
EAPI=7
5 5

  
6
inherit autotools flag-o-matic
6
inherit autotools subversion
7 7

  
8 8
DESCRIPTION="Software audio sampler engine with professional grade features"
9 9
HOMEPAGE="https://www.linuxsampler.org/"
10
SRC_URI="https://download.linuxsampler.org/packages/${P}.tar.bz2"
10
ESVN_REPO_URI="https://svn.linuxsampler.org/svn/linuxsampler/trunk"
11 11

  
12 12
LICENSE="GPL-2"
13 13
SLOT="0"
14
KEYWORDS="amd64 ~x86"
14
KEYWORDS=""
15 15
IUSE="alsa doc jack lv2 sf2 sqlite"
16 16
REQUIRED_USE="|| ( alsa jack )"
17 17

  
......
35 35
PATCHES=(
36 36
	"${FILESDIR}/${PN}-2.0.0-nptl-hardened.patch"
37 37
	"${FILESDIR}/${PN}-2.0.0-lv2-automagic.patch"
38
	"${FILESDIR}/${PN}-2.1.1-fix-yyterror-not-declared.patch"
39 38
)
40 39

  
41 40
DOCS=( AUTHORS ChangeLog NEWS README )
42 41

  
43 42
src_prepare() {
44 43
	default
45
	# Force regeneration of the file to let it build with all bison
46
	# versions, bug #556204
47
	rm src/network/lscpparser.cpp || die
44

  
45
	emake -f Makefile.svn
46

  
48 47
	eautoreconf
49 48
}
50 49

  
Thank you!