Diff oww-0.86.5 with a oww-0.86.5-r2
/usr/portage/sci-misc/oww/oww-0.86.5-r2.ebuild 2025-07-29 16:22:17.344467791 +0300 | ||
---|---|---|
1 |
# Copyright 1999-2024 Gentoo Authors |
|
1 |
# Copyright 1999-2025 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 |
7 | 7 | |
... | ... | |
12 | 12 |
LICENSE="Artistic" |
13 | 13 |
SLOT="0" |
14 | 14 |
KEYWORDS="~amd64 ~x86" |
15 |
IUSE="gtk nls usb" |
|
15 |
IUSE="gtk nls" |
|
16 | 16 | |
17 | 17 |
RDEPEND=" |
18 | 18 |
net-misc/curl |
19 |
gtk? ( x11-libs/gtk+:2 )" |
|
19 |
gtk? ( x11-libs/gtk+:2 ) |
|
20 |
virtual/libusb:0" |
|
20 | 21 |
DEPEND="${RDEPEND}" |
21 |
BDEPEND="virtual/pkgconfig" |
|
22 |
BDEPEND=" |
|
23 |
virtual/pkgconfig |
|
24 |
dev-util/intltool" |
|
22 | 25 | |
23 | 26 |
PATCHES=( |
24 | 27 |
"${FILESDIR}"/${PN}-0.86.4-build.patch |
25 | 28 |
"${FILESDIR}"/${P}-format-security.patch |
26 | 29 |
"${FILESDIR}"/${P}-musl.patch |
30 |
"${FILESDIR}"/${P}-c99.patch |
|
31 |
"${FILESDIR}"/${P}-configure.in.patch |
|
32 |
"${FILESDIR}"/${P}-fix-argument.patch |
|
27 | 33 |
) |
28 | 34 | |
29 | 35 |
src_prepare() { |
... | ... | |
37 | 43 |
--enable-interactive \ |
38 | 44 |
$(use_enable nls) \ |
39 | 45 |
$(use_enable gtk gui) \ |
40 |
$(use_with usb) |
|
46 |
--with-usb |
|
41 | 47 |
} |