commit: 965680017bcc0359494a2b4b78521ea9457a8632
parent 2ce03d03a1b20aa0c423a49aec979ff426dcfb0a
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date: Sat, 23 Jul 2022 23:13:14 +0200
app-emulation/tinyemu: Rename network to http, disable it by default
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/app-emulation/tinyemu/tinyemu-0.2019.12.21.ebuild b/app-emulation/tinyemu/tinyemu-0.2019.12.21.ebuild
@@ -12,10 +12,10 @@ S="${WORKDIR}/${MY_P}"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
-IUSE="+network +sdl"
+IUSE="http +sdl"
DEPEND="
- network? (
+ http? (
net-misc/curl
dev-libs/openssl:=
)
@@ -35,7 +35,7 @@ src_prepare() {
}
src_configure() {
- if use !network; then sed -i '/^CONFIG_FS_NET/s;^;#;' Makefile || die; fi
+ if use !http; then sed -i '/^CONFIG_FS_NET/s;^;#;' Makefile || die; fi
if use !sdl; then sed -i '/^CONFIG_SDL/s;^;#;' Makefile || die; fi
}