Diff sg3_utils-1.47 with a sg3_utils-1.47-r1

/usr/portage/sys-apps/sg3_utils/sg3_utils-1.47-r1.ebuild 2024-12-25 14:59:52.775270183 +0300
3 3

  
4 4
EAPI=7
5 5

  
6
inherit libtool
7

  
6 8
DESCRIPTION="Apps for querying the sg SCSI interface"
7 9
HOMEPAGE="https://sg.danny.cz/sg/"
8 10
#SRC_URI="https://github.com/hreinecke/sg3_utils/archive/v${PV}.tar.gz -> ${P}.tar.gz"
......
13 15
KEYWORDS="~alpha amd64 arm arm64 hppa ~loong ~mips ppc ppc64 ~riscv ~s390 sparc x86"
14 16
IUSE="static-libs"
15 17

  
16
DEPEND="dev-build/libtool"
17 18
RDEPEND="!sys-apps/rescan-scsi-bus"
18 19

  
20
PATCHES=(
21
	# Bug #828897
22
	"${FILESDIR}"/${PN}-1.47-musl.patch
23
)
24

  
25
src_prepare() {
26
	default
27
	elibtoolize
28
}
29

  
19 30
src_configure() {
20 31
	econf $(use_enable static-libs static)
21 32
}
Thank you!