mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-06 00:48:18 -07:00
bump copyright of touched ebuilds to 2024 Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Michał Górny <mgorny@gentoo.org>
42 lines
788 B
Bash
42 lines
788 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
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 usb"
|
|
|
|
RDEPEND="
|
|
net-misc/curl
|
|
gtk? ( x11-libs/gtk+:2 )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.86.4-build.patch
|
|
"${FILESDIR}"/${P}-format-security.patch
|
|
"${FILESDIR}"/${P}-musl.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
mv configure.{in,ac} || die
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--enable-interactive \
|
|
$(use_enable nls) \
|
|
$(use_enable gtk gui) \
|
|
$(use_with usb)
|
|
}
|