2002-08-10 10:51:42 +02:00
|
|
|
#############################################################
|
|
|
|
#
|
|
|
|
# berkeley db
|
|
|
|
#
|
|
|
|
#############################################################
|
2010-06-16 13:47:08 +02:00
|
|
|
BERKELEYDB_VERSION:=4.4.20
|
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_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 \
|
2011-06-21 13:46:34 +02:00
|
|
|
--libdir=/usr/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 \
|
|
|
|
--disable-cxx \
|
|
|
|
--disable-java \
|
|
|
|
--disable-rpc \
|
|
|
|
--disable-tcl \
|
|
|
|
--disable-compat185 \
|
2011-06-20 17:59:55 +02:00
|
|
|
$(SHARED_STATIC_LIBS_OPTS) \
|
2003-03-01 23:00:42 +01:00
|
|
|
--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
|
|
|
|
2011-06-21 13:46:34 +02:00
|
|
|
ifneq ($(BR2_HAVE_DOCUMENTATION),y)
|
2002-08-10 10:51:42 +02:00
|
|
|
|
2011-06-21 13:46:34 +02:00
|
|
|
define BERKELEYDB_REMOVE_DOCS
|
|
|
|
rm -rf $(TARGET_DIR)/usr/docs
|
2010-06-16 13:47:08 +02:00
|
|
|
endef
|
2002-08-10 10:51:42 +02:00
|
|
|
|
2011-06-21 13:46:34 +02:00
|
|
|
BERKELEYDB_POST_INSTALL_TARGET_HOOKS += BERKELEYDB_REMOVE_DOCS
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2011-09-29 21:57:43 +02:00
|
|
|
$(eval $(call AUTOTARGETS))
|