mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-25 15:41:04 +02:00
sys-apps/lshw: Sync with Gentoo
It's from Gentoo commit 838d886aab356bea7a809e8b27a3875901ad297b.
This commit is contained in:
parent
6088cec824
commit
365773fe17
@ -1,2 +1 @@
|
|||||||
DIST lshw-02.19.2b_p20210121-B.02.19.2_p20210121.tar.gz 2469481 BLAKE2B b9a886c21d6abde00f234cc93fc25ae2b4cf734ffd3fdea7847283fa44eef80bfddd6d83ab428c126ef6518eb8da35f3ba15d88cfc5dbb304813a4d28c173351 SHA512 699ee270eb9a8dd6652d7bcab5d99187585159428bdceab2e17add51e29d73a929a4d34168d92308e775383b9920b07e3b02e0781f9f1b1f099aff3550e9b0c0
|
|
||||||
DIST lshw-02.19.2b_p20220831-B.02.19.2_p20220831.tar.gz 2482679 BLAKE2B 00cc7512a020e05577d82b6ab528524f929ef51455502eb8d9abbb3a2f75cac25d837a888ecf1e55a9c4251bb6515aedf4586da0c3f2f6b587ff0413acda3865 SHA512 d0ea5706850a07bbc82c627ce25a2774bbda6f565e259136d89774ec5e85770d8c2373ead46f6f7b1586c85aebdf1383b7ae1539b3f2f9d1b33fa777bc5589f5
|
DIST lshw-02.19.2b_p20220831-B.02.19.2_p20220831.tar.gz 2482679 BLAKE2B 00cc7512a020e05577d82b6ab528524f929ef51455502eb8d9abbb3a2f75cac25d837a888ecf1e55a9c4251bb6515aedf4586da0c3f2f6b587ff0413acda3865 SHA512 d0ea5706850a07bbc82c627ce25a2774bbda6f565e259136d89774ec5e85770d8c2373ead46f6f7b1586c85aebdf1383b7ae1539b3f2f9d1b33fa777bc5589f5
|
||||||
|
@ -1,88 +0,0 @@
|
|||||||
# Copyright 1999-2022 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
PLOCALES='fr'
|
|
||||||
|
|
||||||
inherit desktop flag-o-matic plocale toolchain-funcs xdg
|
|
||||||
|
|
||||||
MY_COMMIT="fdab06ac0b190ea0aa02cd468f904ed69ce0d9f1"
|
|
||||||
MY_PV=$(ver_cut 3 PV/b/B).$(ver_cut 1-3)_$(ver_cut 5-6)
|
|
||||||
|
|
||||||
DESCRIPTION="Hardware Lister"
|
|
||||||
HOMEPAGE="https://www.ezix.org/project/wiki/HardwareLiSter"
|
|
||||||
SRC_URI="https://ezix.org/src/pkg/lshw/archive/${MY_COMMIT}.tar.gz -> ${P}-${MY_PV}.tar.gz"
|
|
||||||
|
|
||||||
LICENSE="GPL-2"
|
|
||||||
SLOT="0"
|
|
||||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
|
|
||||||
IUSE="gtk sqlite static"
|
|
||||||
|
|
||||||
REQUIRED_USE="static? ( !gtk !sqlite )"
|
|
||||||
|
|
||||||
DEPEND="${RDEPEND}"
|
|
||||||
RDEPEND="sys-apps/hwdata
|
|
||||||
gtk? ( x11-libs/gtk+:3 )
|
|
||||||
sqlite? ( dev-db/sqlite:3 )"
|
|
||||||
BDEPEND="gtk? ( virtual/pkgconfig )
|
|
||||||
sqlite? ( virtual/pkgconfig )"
|
|
||||||
|
|
||||||
S=${WORKDIR}/${PN}
|
|
||||||
|
|
||||||
DOCS=( COPYING README.md docs/{Changelog,TODO,IODC.txt,lshw.xsd,proc_usb_info.txt} )
|
|
||||||
|
|
||||||
PATCHES=( "${FILESDIR}"/lshw-02.19.2b-respect-LDFLAGS.patch )
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
default
|
|
||||||
|
|
||||||
plocale_find_changes "src/po" "" ".po" || die
|
|
||||||
sed -i \
|
|
||||||
-e "/^LANGUAGES =/ s/=.*/= $(plocale_get_locales)/" \
|
|
||||||
src/po/Makefile || die
|
|
||||||
sed -i \
|
|
||||||
-e 's:\<pkg-config\>:${PKG_CONFIG}:' \
|
|
||||||
-e 's:+\?make -C:${MAKE} -C:' \
|
|
||||||
-e '/^CXXFLAGS/s:=-g: +=:' \
|
|
||||||
-e '/^CXXFLAGS/s:-g ::' \
|
|
||||||
-e '/^LDFLAGS/s: -g::' \
|
|
||||||
-e '/^all:/s: $(DATAFILES)::' \
|
|
||||||
-e '/^install:/s: all::' \
|
|
||||||
src/Makefile src/gui/Makefile || die
|
|
||||||
sed -i \
|
|
||||||
-e '/^CXXFLAGS/s:\?=-g: +=:' \
|
|
||||||
-e '/^LDFLAGS=/d' \
|
|
||||||
src/core/Makefile || die
|
|
||||||
sed -i \
|
|
||||||
-e '/^#define PCIID_PATH/s:DATADIR"\/pci.ids.*:"/usr/share/hwdata/pci.ids":' \
|
|
||||||
src/core/pci.cc || die
|
|
||||||
sed -i \
|
|
||||||
-e '/^#define USBID_PATH/s:DATADIR"\/usb.ids.*:"/usr/share/hwdata/usb.ids":' \
|
|
||||||
src/core/usb.cc || die
|
|
||||||
}
|
|
||||||
|
|
||||||
src_compile() {
|
|
||||||
tc-export CC CXX AR PKG_CONFIG
|
|
||||||
use static && append-ldflags -static
|
|
||||||
# Some toolchains are defaulting to C++17, which causes
|
|
||||||
# `<sys-apps/lshw-02.19.2b_p20220831` to break due to its use of the
|
|
||||||
# `register` keyword. Just pin it at 14, since future versions don't
|
|
||||||
# have this issue.
|
|
||||||
append-cxxflags '-std=c++14'
|
|
||||||
|
|
||||||
# Need two sep make statements to avoid parallel build issues. #588174
|
|
||||||
local sqlite=$(usex sqlite 1 0)
|
|
||||||
emake VERSION=${MY_PV} SQLITE=${sqlite} all
|
|
||||||
use gtk && emake SQLITE=${sqlite} gui
|
|
||||||
}
|
|
||||||
|
|
||||||
src_install() {
|
|
||||||
emake VERSION=${MY_PV} DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install $(usex gtk 'install-gui' '')
|
|
||||||
if use gtk ; then
|
|
||||||
newicon -s scalable src/gui/artwork/logo.svg lshw.svg
|
|
||||||
make_desktop_entry \
|
|
||||||
"${EPREFIX}"/usr/sbin/gtk-lshw \
|
|
||||||
"${DESCRIPTION}"
|
|
||||||
fi
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user