gentoo-ebuilds/sci-misc/oww/oww-0.86.5-r2.ebuild
Z. Liu 516618e885
sci-misc/oww: fix compile/configure failures
* usb is enabled always, so remove IUSE="usb"
* fix case handling in configure.in
* fix error on function argument mismatch

Closes: https://bugs.gentoo.org/927077
Closes: https://bugs.gentoo.org/944398
Closes: https://bugs.gentoo.org/954879
Signed-off-by: Z. Liu <zhixu.liu@gmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/42533
Closes: https://github.com/gentoo/gentoo/pull/42533
Signed-off-by: Nowa Ammerlaan <nowa@gentoo.org>
2025-07-13 13:33:39 +02:00

47 lines
926 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="A one-wire weather station for Dallas Semiconductor"
HOMEPAGE="http://oww.sourceforge.net/"
SRC_URI="https://downloads.sourceforge.net/${PN}/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="gtk nls"
RDEPEND="
net-misc/curl
gtk? ( x11-libs/gtk+:2 )
virtual/libusb:0"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/pkgconfig
dev-util/intltool"
PATCHES=(
"${FILESDIR}"/${PN}-0.86.4-build.patch
"${FILESDIR}"/${P}-format-security.patch
"${FILESDIR}"/${P}-musl.patch
"${FILESDIR}"/${P}-c99.patch
"${FILESDIR}"/${P}-configure.in.patch
"${FILESDIR}"/${P}-fix-argument.patch
)
src_prepare() {
default
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
econf \
--enable-interactive \
$(use_enable nls) \
$(use_enable gtk gui) \
--with-usb
}