The host versions shouldn't be visible in Kconfig, so remove the reference to BR2_PACKAGE_PKGCONFIG everywhere and prefix the host targets with host-. At the same time add pkgconfig for the target (E.G. for development) and let BR2_PACKAGE_PKGCONFIG control that package. Notice: all defconfigs in the tree have been updated, but make sure to disable the pkgconfig package (unless you want it) if you use an external config, otherwise you'll end up with pkgconfig and glib2 in the target.
56 lines
1.7 KiB
Makefile
56 lines
1.7 KiB
Makefile
#############################################################
|
|
#
|
|
# pkgconfig
|
|
#
|
|
#############################################################
|
|
PKGCONFIG_VERSION = 0.23
|
|
PKGCONFIG_SOURCE = pkg-config-$(PKGCONFIG_VERSION).tar.gz
|
|
PKGCONFIG_SITE = http://pkgconfig.freedesktop.org/releases/
|
|
|
|
ifeq ($(BR2_ENABLE_DEBUG),y) # install-exec doesn't install aclocal stuff
|
|
PKGCONFIG_INSTALL_TARGET_OPT = DESTDIR=$(TARGET_DIR) install-exec
|
|
endif
|
|
|
|
PKGCONFIG_DEPENDENCIES = uclibc libglib2
|
|
|
|
PKGCONFIG_CONF_OPT = --with-installed-glib
|
|
|
|
$(eval $(call AUTOTARGETS,package,pkgconfig))
|
|
|
|
# pkgconfig for the host
|
|
PKGCONFIG_HOST_DIR:=$(BUILD_DIR)/pkgconfig-$(PKGCONFIG_VERSION)-host
|
|
PKGCONFIG_HOST_BINARY:=$(HOST_DIR)/usr/bin/pkg-config
|
|
|
|
$(PKGCONFIG_HOST_DIR)/.unpacked: $(DL_DIR)/$(PKGCONFIG_SOURCE)
|
|
mkdir -p $(@D)
|
|
$(INFLATE$(suffix $(PKGCONFIG_SOURCE))) $< | \
|
|
$(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(@D) $(TAR_OPTIONS) -
|
|
toolchain/patch-kernel.sh $(@D) package/pkgconfig/ \*.patch
|
|
touch $@
|
|
|
|
$(PKGCONFIG_HOST_DIR)/.configured: $(PKGCONFIG_HOST_DIR)/.unpacked
|
|
(cd $(@D); rm -rf config.cache; \
|
|
./configure \
|
|
--prefix=$(HOST_DIR)/usr \
|
|
--sysconfdir=$(HOST_DIR)/etc \
|
|
--with-pc-path="$(STAGING_DIR)/usr/lib/pkgconfig" \
|
|
--disable-static \
|
|
)
|
|
touch $@
|
|
|
|
$(PKGCONFIG_HOST_DIR)/.compiled: $(PKGCONFIG_HOST_DIR)/.configured
|
|
$(MAKE) -C $(@D)
|
|
|
|
$(PKGCONFIG_HOST_BINARY): $(PKGCONFIG_HOST_DIR)/.compiled
|
|
$(MAKE) -C $(<D) install
|
|
|
|
host-pkgconfig: $(PKGCONFIG_HOST_BINARY)
|
|
|
|
host-pkgconfig-clean:
|
|
rm -f $(addprefix $(PKGCONFIG_HOST_DIR)/,.unpacked .configured .compiled)
|
|
-$(MAKE) -C $(PKGCONFIG_HOST_DIR) uninstall
|
|
-$(MAKE) -C $(PKGCONFIG_HOST_DIR) clean
|
|
|
|
host-pkgconfig-dirclean:
|
|
rm -rf $(PKGCONFIG_HOST_DIR)
|