Diff linuxsampler-2.3.1-r1 with a linuxsampler-9999

/usr/portage/media-sound/linuxsampler/linuxsampler-9999.ebuild 2026-05-16 19:17:04.654398540 +0300
1
# Copyright 1999-2025 Gentoo Authors
1
# Copyright 1999-2026 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5

  
6
inherit autotools flag-o-matic
6
inherit autotools flag-o-matic 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"
15 14
IUSE="alsa doc jack lv2 sf2 sqlite"
16 15
REQUIRED_USE="|| ( alsa jack )"
17 16

  
......
37 36
	"${FILESDIR}/${PN}-2.0.0-nptl-hardened.patch"
38 37
	"${FILESDIR}/${PN}-2.0.0-lv2-automagic.patch"
39 38
	"${FILESDIR}/${PN}-2.1.1-fix-yyterror-not-declared.patch"
40
	"${FILESDIR}/${PN}-2.3.1-c99-configure.patch"
41 39
)
42 40

  
43 41
DOCS=( AUTHORS ChangeLog NEWS README )
......
45 43
src_prepare() {
46 44
	default
47 45

  
48
	# Force regeneration of the file to let it build with all bison
49
	# versions, bug #556204
50
	rm src/network/lscpparser.cpp || die
46
	emake -f Makefile.svn
51 47

  
52 48
	eautoreconf
53 49
}
Thank you!