FOO_CPE_ID_VALID really ought to be an internal implementaion detail.
Packages that really want to trigger their CPE defintitions really
should set one of the actual variables to a meaningful value.
There are two CPE-related variables that we could chose to set to
replace FOO_CPE_ID_VALID: FOO_CPE_ID_VENDOR and FOO_CPE_ID_PRODUCT.
Between those two, _VENDOR more often diverges from the default than
_PRODUCT does, so that's what we use.
---8<------8<------8<------8<------8<---
#!/bin/bash
# Replace FOO_CPE_ID_VALID = YES with FOO_CPE_ID_VENDOR = foo_project
for i in $(git grep -l -E '[^)]_CPE_ID_VALID = YES' package support); do
pkg="$(basename "${i%/*}")"
sed -r -i -e "s/_CPE_ID_VALID = YES/_CPE_ID_VENDOR = ${pkg}_project/" "${i}"
done
---8<------8<------8<------8<------8<---
Reported-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Cc: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Cc: Matthew Weber <matthew.weber@rockwellcollins.com>
Cc: Fabrice Fontaine <fontaine.fabrice@gmail.com>
[Peter: update cpe-test comment to reflect pkg3 change]
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
31 lines
837 B
Makefile
31 lines
837 B
Makefile
################################################################################
|
|
#
|
|
# zziplib
|
|
#
|
|
################################################################################
|
|
|
|
ZZIPLIB_VERSION = 0.13.72
|
|
ZZIPLIB_SITE = $(call github,gdraheim,zziplib,v$(ZZIPLIB_VERSION))
|
|
ZZIPLIB_LICENSE = LGPL-2.0+ or MPL-1.1
|
|
ZZIPLIB_LICENSE_FILES = docs/COPYING.LIB docs/COPYING.MPL docs/copying.htm
|
|
ZZIPLIB_CPE_ID_VENDOR = zziplib_project
|
|
ZZIPLIB_INSTALL_STAGING = YES
|
|
ZZIPLIB_CONF_OPTS += \
|
|
-DZZIPDOCS=OFF \
|
|
-DZZIPTEST=OFF
|
|
ZZIPLIB_DEPENDENCIES = host-pkgconf zlib
|
|
|
|
define ZZIPLIB_POST_EXTRACT_FIXUP
|
|
rm $(@D)/GNUmakefile
|
|
endef
|
|
ZZIPLIB_POST_EXTRACT_HOOKS += ZZIPLIB_POST_EXTRACT_FIXUP
|
|
|
|
ifeq ($(BR2_PACKAGE_SDL2),y)
|
|
ZZIPLIB_CONF_OPTS += -DZZIPSDL=ON
|
|
ZZIPLIB_DEPENDENCIES += sdl2
|
|
else
|
|
ZZIPLIB_CONF_OPTS += -DZZIPSDL=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|