mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
@@ -0,0 +1,100 @@
|
||||
#
|
||||
# Copyright (C) 2009-2012 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
include $(INCLUDE_DIR)/uclibc++.mk
|
||||
|
||||
PKG_NAME:=db47
|
||||
PKG_VERSION:=4.7.25.NC
|
||||
PKG_RELEASE:=6
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/db-$(PKG_VERSION)
|
||||
PKG_SOURCE:=db-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://download.oracle.com/berkeley-db/
|
||||
PKG_MD5SUM:=073ab7f20d24b3872a51ca762f5090e7
|
||||
|
||||
PKG_LICENSE:=BSD-2c
|
||||
PKG_LICENSE_FILES:=LICENSE
|
||||
|
||||
PKG_FIXUP:=autoreconf
|
||||
PKG_LIBTOOL_PATHS:=. build_unix
|
||||
PKG_BUILD_PARALLEL:=1
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/libdb47
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
DEPENDS:=+libxml2
|
||||
TITLE:=Berkeley DB library (4.7)
|
||||
URL:=http://www.sleepycat.com/products/db.shtml
|
||||
MAINTAINER:=W. Michael Petullo <mike@flyn.org>
|
||||
endef
|
||||
|
||||
define Package/libdb47/description
|
||||
Berkeley DB library (4.7).
|
||||
endef
|
||||
|
||||
define Package/libdb47xx
|
||||
SECTION:=libs
|
||||
CATEGORY:=Libraries
|
||||
DEPENDS:=+libdb47 $(CXX_DEPENDS)
|
||||
TITLE:=Berkeley DB library (4.7) for C++
|
||||
URL:=http://www.sleepycat.com/products/db.shtml
|
||||
MAINTAINER:=W. Michael Petullo <mike@flyn.org>
|
||||
endef
|
||||
|
||||
define Package/libdb47xx/description
|
||||
Berkeley DB library (4.7). C++ wrapper.
|
||||
endef
|
||||
|
||||
CONFIGURE_PATH = build_unix
|
||||
CONFIGURE_CMD = ../dist/configure
|
||||
|
||||
CONFIGURE_ARGS += \
|
||||
--enable-shared \
|
||||
--enable-static \
|
||||
--disable-java \
|
||||
--with-mutex=UNIX/fcntl \
|
||||
--disable-tcl \
|
||||
--disable-rpc \
|
||||
--enable-compat185 \
|
||||
--enable-smallbuild \
|
||||
--disable-debug \
|
||||
--enable-cryptography \
|
||||
$(if $(CONFIG_PACKAGE_libdb47xx),--enable-cxx,--disable-cxx)
|
||||
|
||||
TARGET_CFLAGS += $(FPIC)
|
||||
|
||||
define Build/Compile
|
||||
+$(MAKE) $(PKG_JOBS) -C $(PKG_BUILD_DIR)/build_unix \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" all
|
||||
$(MAKE) -C $(PKG_BUILD_DIR)/build_unix \
|
||||
DESTDIR="$(PKG_INSTALL_DIR)" install
|
||||
endef
|
||||
|
||||
define Package/libdb47/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdb-*.so $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Package/libdb47xx/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdb_cxx-*.so $(1)/usr/lib/
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(1)/usr/include
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/db.h $(1)/usr/include/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/include/db_cxx.h $(1)/usr/include/
|
||||
$(INSTALL_DIR) $(1)/usr/lib/
|
||||
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libdb*.{a,so} $(1)/usr/lib
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,libdb47))
|
||||
$(eval $(call BuildPackage,libdb47xx))
|
||||
|
||||
Reference in New Issue
Block a user