proxy-libintl: Delete recipe

proxy-libintl provides a Win32 static libintl stub sourced from an
ancient (2010) GNOME win32 dependency zip. It is not used by any target
build and its lone consumer was the meta-oe packagegroup; drop the
recipe and its packagegroup entry.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
Khem Raj
2026-07-19 22:45:22 -07:00
parent d6ca5ef904
commit d0d561568a
2 changed files with 0 additions and 34 deletions
@@ -180,7 +180,6 @@ RDEPENDS:packagegroup-meta-oe-core = "\
mm-common \
${@bb.utils.contains("DISTRO_FEATURES", "systemd", "ndctl", "", d)} \
pim435 \
proxy-libintl \
safec \
sdbus-c++ \
sdbus-c++-tools \
@@ -1,33 +0,0 @@
SUMMARY = "Proxy libintl"
HOMEPAGE = "https://download.gnome.org/binaries/win32/dependencies/"
SECTION = "libs"
LICENSE = "LGPL-2.0-only"
LIC_FILES_CHKSUM = "file://${UNPACKDIR}/src/proxy-libintl/COPYING.LIB.txt;md5=bc400bc21422f9a92e76ec2c5167ca2e"
PROVIDES = "virtual/libintl"
SRC_URI = " \
https://download.gnome.org/binaries/win32/dependencies/${BPN}-dev_${PV}_win32.zip \
"
SRC_URI[sha256sum] = "291ac350cc5eb4a01b0d651ca99fae64cee8a1c06b2005277fab5a4356f9ae91"
UPSTREAM_CHECK_REGEX = "${BPN}-dev_(?P<pver>\d+)_win32\.zip"
PACKAGES = "${PN} ${PN}-dev"
FILES:${PN}-dev = "${includedir}/libintl.h ${libdir}/libintl.a"
INSANE_SKIP:${PN}-dev = "staticdev"
ALLOW_EMPTY:${PN} = "1"
CFLAGS:append = " -fPIC -Wall -I ../../include ${@['-DSTUB_ONLY', ''][d.getVar('USE_NLS') != 'no']}"
TARGET_CC_ARCH += "${LDFLAGS}"
do_compile() {
cd ${UNPACKDIR}/src/proxy-libintl
oe_runmake ../../lib/libintl.a
}
do_install() {
install -d ${D}/${includedir}
install -d ${D}/${libdir}
install -m 0644 ${UNPACKDIR}/include/libintl.h ${D}/${includedir}
install -m 0644 ${UNPACKDIR}/lib/libintl.a ${D}/${libdir}
}