732d94d25f
they should be configured with --prefix=/usr and we then need to use make DESTDIR=$(STAGING_DIR) install to get things installed into the staging directory. The current situation for many packages, which use --prefix=$(STAGING_DIR) results in the staging_dir paths getting compiled into the binary itself. This also adds in a pile of libtool fixups. Between broken pkgconfig, broken libtool handling, and broken --prefix settings, its a wonder things have worked as well as they have up till now. -Erik
72 lines
2.0 KiB
Makefile
72 lines
2.0 KiB
Makefile
#############################################################
|
|
#
|
|
# libraw1394
|
|
#
|
|
#############################################################
|
|
|
|
LIBRAW1394_VERSION:=1.2.1
|
|
LIBRAW1394_SOURCE:=libraw1394-$(LIBRAW1394_VERSION).tar.gz
|
|
LIBRAW1394_SITE:=http://www.linux1394.org/dl
|
|
LIBRAW1394_DIR:=$(BUILD_DIR)/libraw1394-$(LIBRAW1394_VERSION)
|
|
|
|
$(DL_DIR)/$(LIBRAW1394_SOURCE):
|
|
$(WGET) -P $(DL_DIR) $(LIBRAW1394_SITE)/$(LIBRAW1394_SOURCE)
|
|
|
|
$(LIBRAW1394_DIR)/.source: $(DL_DIR)/$(LIBRAW1394_SOURCE)
|
|
$(ZCAT) $(DL_DIR)/$(LIBRAW1394_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
|
|
touch $(LIBRAW1394_DIR)/.source
|
|
|
|
$(LIBRAW1394_DIR)/.configured: $(LIBRAW1394_DIR)/.source
|
|
(cd $(LIBRAW1394_DIR); \
|
|
$(TARGET_CONFIGURE_OPTS) \
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
|
./configure \
|
|
--target=$(GNU_TARGET_NAME) \
|
|
--host=$(GNU_TARGET_NAME) \
|
|
--build=$(GNU_HOST_NAME) \
|
|
--prefix=/usr \
|
|
--exec-prefix=/usr \
|
|
--bindir=/usr/bin \
|
|
--sbindir=/usr/sbin \
|
|
--libdir=/lib \
|
|
--libexecdir=/usr/lib \
|
|
--sysconfdir=/etc \
|
|
--datadir=/usr/share \
|
|
--localstatedir=/var \
|
|
--includedir=/include \
|
|
--mandir=/usr/man \
|
|
--infodir=/usr/info \
|
|
);
|
|
touch $(LIBRAW1394_DIR)/.configured;
|
|
|
|
$(LIBRAW1394_DIR)/.compiled: $(LIBRAW1394_DIR)/.configured
|
|
$(MAKE) -C $(LIBRAW1394_DIR)
|
|
touch $(LIBRAW1394_DIR)/.compiled
|
|
|
|
$(STAGING_DIR)/lib/libraw1394.so: $(LIBRAW1394_DIR)/.compiled
|
|
$(MAKE) DESTDIR=$(STAGING_DIR) -C $(LIBRAW1394_DIR)/src install
|
|
|
|
$(TARGET_DIR)/usr/lib/libraw1394.so: $(STAGING_DIR)/lib/libraw1394.so
|
|
cp -dpf $(STAGING_DIR)/lib/libraw1394.so* $(TARGET_DIR)/usr/lib/
|
|
|
|
libraw1394: uclibc $(TARGET_DIR)/usr/lib/libraw1394.so
|
|
|
|
libraw1394-source: $(DL_DIR)/$(LIBRAW1394_SOURCE)
|
|
|
|
libraw1394-clean:
|
|
rm $(TARGET_DIR)/usr/lib/libraw1394.so*
|
|
-$(MAKE) -C $(LIBRAW1394_DIR) clean
|
|
|
|
libraw1394-dirclean:
|
|
rm -rf $(LIBRAW1394_DIR)
|
|
|
|
#############################################################
|
|
#
|
|
# Toplevel Makefile options
|
|
#
|
|
#############################################################
|
|
ifeq ($(strip $(BR2_PACKAGE_LIBRAW1394)),y)
|
|
TARGETS+=libraw1394
|
|
endif
|
|
|