From a38be09284a78c01aa497b721b73984bd60f7981 Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 16 Sep 2021 20:02:11 +0100 Subject: app-admin/hardinfo: fix libsoup slot dependency Signed-off-by: Sam James --- .../hardinfo-0.6_alpha_pre20201116-r1.ebuild | 36 ++++++++++++++++++++++ .../hardinfo/hardinfo-0.6_alpha_pre20201116.ebuild | 36 ---------------------- 2 files changed, 36 insertions(+), 36 deletions(-) create mode 100644 app-admin/hardinfo/hardinfo-0.6_alpha_pre20201116-r1.ebuild delete mode 100644 app-admin/hardinfo/hardinfo-0.6_alpha_pre20201116.ebuild (limited to 'app-admin') diff --git a/app-admin/hardinfo/hardinfo-0.6_alpha_pre20201116-r1.ebuild b/app-admin/hardinfo/hardinfo-0.6_alpha_pre20201116-r1.ebuild new file mode 100644 index 000000000000..06474c9be4bd --- /dev/null +++ b/app-admin/hardinfo/hardinfo-0.6_alpha_pre20201116-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit xdg cmake + +GIT_COMMIT="54b2e307af763ce87bc8c88e80785d8114bf38dd" + +DESCRIPTION="System information and benchmark tool for Linux systems" +HOMEPAGE="https://github.com/lpereira/hardinfo" +SRC_URI="https://github.com/lpereira/hardinfo/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="debug" + +RDEPEND="dev-libs/glib:2 + dev-libs/json-glib + net-libs/libsoup:2.4 + sys-libs/zlib + x11-libs/cairo + >=x11-libs/gtk+-3.0:3" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +S="${WORKDIR}/${PN}-${GIT_COMMIT}" + +src_configure() { + local mycmakeargs=( + -DHARDINFO_GTK3=1 + -DHARDINFO_DEBUG=$(usex debug 1 0) + ) + cmake_src_configure +} diff --git a/app-admin/hardinfo/hardinfo-0.6_alpha_pre20201116.ebuild b/app-admin/hardinfo/hardinfo-0.6_alpha_pre20201116.ebuild deleted file mode 100644 index 4b3aba5dca73..000000000000 --- a/app-admin/hardinfo/hardinfo-0.6_alpha_pre20201116.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg cmake - -GIT_COMMIT="54b2e307af763ce87bc8c88e80785d8114bf38dd" - -DESCRIPTION="System information and benchmark tool for Linux systems" -HOMEPAGE="https://github.com/lpereira/hardinfo" -SRC_URI="https://github.com/lpereira/hardinfo/archive/${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="debug" - -RDEPEND="dev-libs/glib:2 - dev-libs/json-glib - net-libs/libsoup - sys-libs/zlib - x11-libs/cairo - >=x11-libs/gtk+-3.0:3" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -S="${WORKDIR}/${PN}-${GIT_COMMIT}" - -src_configure() { - local mycmakeargs=( - -DHARDINFO_GTK3=1 - -DHARDINFO_DEBUG=$(usex debug 1 0) - ) - cmake_src_configure -} -- cgit v1.2.3-65-gdbad