Diff libgig-4.3.0 with a libgig-9999

/usr/portage/media-libs/libgig/libgig-9999.ebuild 2023-10-09 14:52:31.680368405 +0300
3 3

  
4 4
EAPI=7
5 5

  
6
inherit autotools subversion
7

  
6 8
DESCRIPTION="C++ library for loading Gigasampler and DLS level 1/2 files"
7 9
HOMEPAGE="https://www.linuxsampler.org/libgig/"
8
SRC_URI="https://download.linuxsampler.org/packages/${P}.tar.bz2"
10
ESVN_REPO_URI="https://svn.linuxsampler.org/svn/libgig/trunk"
9 11

  
10 12
LICENSE="GPL-2"
11 13
SLOT="0"
12
KEYWORDS="amd64 ~ppc x86"
14
KEYWORDS=""
13 15
IUSE="doc"
14 16

  
15 17
RDEPEND="
......
20 22
	virtual/pkgconfig
21 23
	doc? ( app-doc/doxygen )"
22 24

  
25
src_prepare() {
26
	default
27

  
28
	emake -f Makefile.svn
29
	eautoreconf
30
}
31

  
23 32
src_compile() {
24 33
	emake
25 34
	use doc && emake docs
Thank you!