Diff elinks-0.16.0 with a elinks-0.16.1.1-r1

/usr/portage/www-client/elinks/elinks-0.16.1.1-r1.ebuild 2023-10-09 14:52:35.884368511 +0300
57 57
	zlib? ( >=sys-libs/zlib-1.1.4 )
58 58
	zstd? ( app-arch/zstd:= )
59 59
"
60
DEPEND="${RDEPEND}"
60
DEPEND="${RDEPEND}
61
	X? ( x11-base/xorg-proto )"
61 62
BDEPEND="
62 63
	${PYTHON_DEPS}
63 64
	virtual/pkgconfig
......
67 68
	)
68 69
"
69 70

  
70
PATCHES=(
71
	"${FILESDIR}"/${P}-fix-tests.patch
72
	"${FILESDIR}"/${PN}-0.16.0-fix-build-mujs.patch
73
)
74

  
75 71
pkg_setup() {
76 72
	use lua && lua-single_pkg_setup
77 73

  
......
80 76

  
81 77
src_configure() {
82 78
	local emesonargs=(
79
		-Ddocdir="${EPREFIX}"/usr/share/doc/${PF}
80
		-Dhtmldoc=false
81
		-Dpdfdoc=false
83 82
		-D88-colors=true
84 83
		-D256-colors=true
85 84
		$(meson_use bittorrent)
......
90 89
		$(meson_use ftp)
91 90
		-Dfsp=false
92 91
		-Dgemini=false
93
		-Dgettext=true
92
		$(meson_use nls gettext)
94 93
		$(meson_use gopher)
95 94
		$(meson_use gpm)
96 95
		$(meson_use guile)
Thank you!