Diff uget-2.2.3 with a uget-9999

/usr/portage/www-client/uget/uget-9999.ebuild 2023-10-09 14:52:35.892368512 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
inherit autotools xdg
6
inherit autotools git-r3 xdg
7 7

  
8 8
DESCRIPTION="Download manager using gtk+ and libcurl"
9 9
HOMEPAGE="http://www.ugetdm.com"
10
SRC_URI="mirror://sourceforge/urlget/${P}-1.tar.gz"
10
EGIT_REPO_URI="https://git.code.sf.net/p/urlget/uget2"
11 11

  
12 12
LICENSE="LGPL-2.1"
13 13
SLOT="0"
14
KEYWORDS="amd64 ~arm ~ppc x86"
15 14
IUSE="aria2 appindicator control-socket +gnutls gstreamer libnotify nls openssl rss"
16 15
REQUIRED_USE="^^ ( gnutls openssl )"
17 16

  
......
27 26
	aria2? ( net-misc/aria2[xmlrpc] )
28 27
	appindicator? ( dev-libs/libayatana-appindicator )
29 28
	gstreamer? ( media-libs/gstreamer:1.0 )
29
	openssl? ( dev-libs/openssl:= )
30 30
	libnotify? ( x11-libs/libnotify )
31
	openssl? ( dev-libs/openssl:0= )
32 31
"
33 32
DEPEND="${RDEPEND}"
34 33
BDEPEND="
35 34
	dev-util/intltool
36
	sys-devel/gettext
37 35
	virtual/pkgconfig
38
"
36
	sys-devel/gettext"
39 37

  
40 38
PATCHES=(
41
	"${FILESDIR}"/${PN}-2.2.1-fno-common.patch
42 39
	# https://github.com/ugetdm/uget/issues/49
43 40
	"${FILESDIR}"/${PN}-2.2.1-ayatana.patch
44 41
	"${FILESDIR}"/${PN}-2.2.3-broken-curl-check.patch
......
59 56
		$(use_enable rss rss_notify)
60 57
		$(use_with gnutls)
61 58
		$(use_with openssl)
59
		--disable-pwmd
62 60
	)
63 61

  
64 62
	econf "${myconf[@]}"
Thank you!