Diff libgpod-0.8.3-r5 with a libgpod-0.8.3-r6

/usr/portage/media-libs/libgpod/libgpod-0.8.3-r6.ebuild 2023-10-09 14:52:31.680368405 +0300
1
# Copyright 1999-2021 Gentoo Authors
1
# Copyright 1999-2023 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4
EAPI=7
4
EAPI=8
5 5

  
6 6
inherit autotools udev
7 7

  
......
39 39
	"${FILESDIR}"/${P}-comment.patch # bug 537968
40 40
	"${FILESDIR}"/${P}-segfault.patch # bug 565052
41 41
	"${FILESDIR}"/${P}-pkgconfig_overlinking.patch
42
	"${FILESDIR}"/${P}-implicit-int.patch
42 43
)
43 44

  
44 45
src_prepare() {
......
64 65
src_install() {
65 66
	default
66 67
	rm "${ED}"/usr/$(get_libdir)/pkgconfig/libgpod-sharp.pc || die
67
	rmdir "${ED}"/tmp || die
68
	use udev && rmdir "${ED}"/tmp || die
68 69
	find "${ED}" -name '*.la' -type f -delete || die
69 70
}
71

  
72
pkg_postinst() {
73
	use udev && udev_reload
74
}
75

  
76
pkg_postrm() {
77
	use udev && udev_reload
78
}
Thank you!