2002-08-10 10:51:42 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# berkeley db
|
|
|
|
#
|
|
|
|
#############################################################
|
2010-06-16 13:47:08 +02:00
|
|
|
BERKELEYDB_VERSION:=4.4.20
|
|
|
|
BERKELEYDB_SO_VERSION:=4.4
|
2010-09-02 16:23:16 +02:00
|
|
|
BERKELEYDB_SITE:=http://download.oracle.com/berkeley-db
|
2010-06-16 13:47:08 +02:00
|
|
|
BERKELEYDB_SOURCE:=db-$(BERKELEYDB_VERSION).NC.tar.gz
|
|
|
|
BERKELEYDB_SHARLIB:=libdb-$(BERKELEYDB_SO_VERSION).so
|
|
|
|
BERKELEYDB_SUBDIR=build_unix
|
|
|
|
BERKELEYDB_INSTALL_STAGING = YES
|
|
|
|
|
|
|
|
#build directory can't be the directory where configure are there, so..
|
|
|
|
define BERKELEYDB_CONFIGURE_CMDS
|
|
|
|
(cd $(@D)/build_unix; rm -rf config.cache; \
|
2003-03-04 20:16:19 +01:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2007-06-27 14:01:27 +02:00
|
|
|
$(TARGET_CONFIGURE_ARGS) \
|
2009-10-01 21:24:42 +02:00
|
|
|
../dist/configure $(QUIET) \
|
2003-01-17 09:03:59 +01:00
|
|
|
--target=$(GNU_TARGET_NAME) \
|
2003-03-04 20:16:19 +01:00
|
|
|
--host=$(GNU_TARGET_NAME) \
|
|
|
|
--build=$(GNU_HOST_NAME) \
|
2003-01-17 09:03:59 +01:00
|
|
|
--prefix=/usr \
|
|
|
|
--exec-prefix=/usr \
|
|
|
|
--bindir=/usr/bin \
|
|
|
|
--sbindir=/usr/sbin \
|
2007-01-14 04:52:21 +01:00
|
|
|
--libdir=/lib \
|
2003-01-17 09:03:59 +01:00
|
|
|
--libexecdir=/usr/lib \
|
|
|
|
--sysconfdir=/etc \
|
|
|
|
--datadir=/usr/share \
|
|
|
|
--localstatedir=/var \
|
2007-08-12 00:26:56 +02:00
|
|
|
--includedir=/usr/include \
|
2007-09-17 14:30:31 +02:00
|
|
|
--mandir=/usr/share/man \
|
|
|
|
--infodir=/usr/share/info \
|
2003-03-01 23:00:42 +01:00
|
|
|
--with-gnu-ld \
|
2003-01-17 09:03:59 +01:00
|
|
|
--enable-shared \
|
2003-03-01 23:00:42 +01:00
|
|
|
--disable-cxx \
|
|
|
|
--disable-java \
|
|
|
|
--disable-rpc \
|
|
|
|
--disable-tcl \
|
|
|
|
--disable-compat185 \
|
|
|
|
--with-pic \
|
2007-08-21 21:20:18 +02:00
|
|
|
)
|
2010-06-16 13:47:08 +02:00
|
|
|
$(SED) 's/\.lo/.o/g' $(@D)/build_unix/Makefile
|
|
|
|
endef
|
2002-08-10 10:51:42 +02:00
|
|
|
|
2010-06-16 13:47:08 +02:00
|
|
|
ifeq ($(BR2_HAVE_DEVFILES),y)
|
|
|
|
define BERKELEYDB_INSTALL_TARGET_DEVFILES_CMDS
|
2007-08-12 00:26:56 +02:00
|
|
|
cp -dpf $(STAGING_DIR)/usr/include/db.h $(TARGET_DIR)/usr/include/
|
2003-03-01 23:00:42 +01:00
|
|
|
cp -dpf $(STAGING_DIR)/lib/libdb*.a $(TARGET_DIR)/usr/lib/
|
|
|
|
cp -dpf $(STAGING_DIR)/lib/libdb*.la $(TARGET_DIR)/usr/lib/
|
2010-06-16 13:47:08 +02:00
|
|
|
endef
|
|
|
|
endif
|
2002-08-10 10:51:42 +02:00
|
|
|
|
2010-06-16 13:47:08 +02:00
|
|
|
define BERKELEYDB_INSTALL_TARGET_CMDS
|
|
|
|
rm -rf $(TARGET_DIR)/lib/libdb*
|
|
|
|
cp -a $(STAGING_DIR)/lib/libdb*so* $(TARGET_DIR)/lib/
|
|
|
|
rm -f $(addprefix $(TARGET_DIR)/lib/,libdb.so libdb.la libdb.a)
|
|
|
|
(cd $(TARGET_DIR)/usr/lib; ln -fs /lib/$(BERKELEYDB_SHARLIB) libdb.so)
|
|
|
|
$(BERKELEYDB_INSTALL_TARGET_DEVFILES_CMDS)
|
|
|
|
endef
|
2002-08-10 10:51:42 +02:00
|
|
|
|
2010-06-16 13:47:08 +02:00
|
|
|
$(eval $(call AUTOTARGETS,package,berkeleydb))
|