diff options
author | cmchao <cmchao@gmail.com> | 2010-06-16 19:47:19 +0800 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-06-24 13:51:11 +0200 |
commit | 9155a9cfa06aceac300500a7b017197dde006aa3 (patch) | |
tree | f0fbfede4581293a6eab80c831aad29f2ac2b20f /package | |
parent | cce342461a513bcc47635a87da2811f65e9b8b3b (diff) |
libgpg-error : convert to autotools infrastructure & bump to 1.8
Changes by Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
* Installation to target is the default
Signed-off-by: cmchao <cmchao@gmail.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/libgpg-error/libgpg-error.mk | 71 |
1 files changed, 4 insertions, 67 deletions
diff --git a/package/libgpg-error/libgpg-error.mk b/package/libgpg-error/libgpg-error.mk index 0b513ff14..89ff24c98 100644 --- a/package/libgpg-error/libgpg-error.mk +++ b/package/libgpg-error/libgpg-error.mk @@ -3,74 +3,11 @@ # libgpg-error # ############################################################# -LIBGPG_ERROR_VERSION:=1.5 +LIBGPG_ERROR_VERSION:=1.8 LIBGPG_ERROR_SOURCE:=libgpg-error-$(LIBGPG_ERROR_VERSION).tar.bz2 LIBGPG_ERROR_SITE:=ftp://gd.tuwien.ac.at/privacy/gnupg/libgpg-error -LIBGPG_ERROR_DIR:=$(BUILD_DIR)/libgpg-error-$(LIBGPG_ERROR_VERSION) -LIBGPG_ERROR_LIBRARY:=src/libgpg-error.la -LIBGPG_ERROR_DESTDIR:=usr/lib -LIBGPG_ERROR_TARGET_LIBRARY=$(LIBGPG_ERROR_DESTDIR)/libgpg-error.so -$(DL_DIR)/$(LIBGPG_ERROR_SOURCE): - $(call DOWNLOAD,$(LIBGPG_ERROR_SITE),$(LIBGPG_ERROR_SOURCE)) +LIBGPG_ERROR_LIBTOOL_PATCH = NO +LIBGPG_ERROR_INSTALL_STAGING = YES -$(LIBGPG_ERROR_DIR)/.source: $(DL_DIR)/$(LIBGPG_ERROR_SOURCE) - $(BZCAT) $(DL_DIR)/$(LIBGPG_ERROR_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - - toolchain/patch-kernel.sh $(LIBGPG_ERROR_DIR) package/libgpg-error/ libgpg-error\*.patch - $(CONFIG_UPDATE) $(LIBGPG_ERROR_DIR) - touch $(LIBGPG_ERROR_DIR)/.source - -$(LIBGPG_ERROR_DIR)/.configured: $(LIBGPG_ERROR_DIR)/.source - (cd $(LIBGPG_ERROR_DIR); rm -f config.cache; \ - $(TARGET_CONFIGURE_OPTS) \ - $(TARGET_CONFIGURE_ARGS) \ - ./configure $(QUIET) \ - --target=$(GNU_TARGET_NAME) \ - --host=$(GNU_TARGET_NAME) \ - --build=$(GNU_HOST_NAME) \ - --prefix=/usr \ - --exec-prefix=/usr \ - --bindir=/usr/bin \ - --sbindir=/usr/sbin \ - --libdir=/usr/lib \ - --libexecdir=/$(LIBGPG_ERROR_DESTDIR) \ - --sysconfdir=/etc \ - --datadir=/usr/share \ - --localstatedir=/var \ - --includedir=/usr/include \ - --mandir=/usr/man \ - --infodir=/usr/info \ - $(DISABLE_NLS) \ - ) - touch $(LIBGPG_ERROR_DIR)/.configured - -$(LIBGPG_ERROR_DIR)/$(LIBGPG_ERROR_LIBRARY): $(LIBGPG_ERROR_DIR)/.configured - $(MAKE) CC=$(TARGET_CC) -C $(LIBGPG_ERROR_DIR) - -$(STAGING_DIR)/$(LIBGPG_ERROR_TARGET_LIBRARY): $(LIBGPG_ERROR_DIR)/$(LIBGPG_ERROR_LIBRARY) - $(MAKE) DESTDIR=$(STAGING_DIR) -C $(LIBGPG_ERROR_DIR) install - $(SED) "s,^libdir=.*,libdir=\'$(STAGING_DIR)/usr/lib\',g" $(STAGING_DIR)/usr/lib/libgpg-error.la - -$(TARGET_DIR)/$(LIBGPG_ERROR_TARGET_LIBRARY): $(STAGING_DIR)/$(LIBGPG_ERROR_TARGET_LIBRARY) - cp -dpf $<* $(TARGET_DIR)/$(LIBGPG_ERROR_DESTDIR) - -libgpg-error: $(TARGET_DIR)/$(LIBGPG_ERROR_TARGET_LIBRARY) - -libgpg-error-source: $(DL_DIR)/$(LIBGPG_ERROR_SOURCE) - -libgpg-error-clean: - rm -f $(TARGET_DIR)/$(LIBGPG_ERROR_TARGET_LIBRARY)* - -$(MAKE) -C $(LIBGPG_ERROR_DIR) clean - rm -f $(STAGING_DIR)/$(LIBGPG_ERROR_TARGET_LIBRARY)\* - -libgpg-error-dirclean: - rm -rf $(LIBGPG_ERROR_DIR) - -############################################################# -# -# Toplevel Makefile options -# -############################################################# -ifeq ($(BR2_PACKAGE_LIBGPG_ERROR),y) -TARGETS+=libgpg-error -endif +$(eval $(call AUTOTARGETS,package,libgpg-error)) |