[package] add unixodbc
Signed-off-by: Jiri Slachta <jiri@slachta.eu> git-svn-id: svn://svn.openwrt.org/openwrt/packages@31164 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
d234cdcc86
commit
0d80796377
114
libs/unixodbc/Makefile
Normal file
114
libs/unixodbc/Makefile
Normal file
@ -0,0 +1,114 @@
|
|||||||
|
#
|
||||||
|
# Copyright (C) 2012 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=unixodbc
|
||||||
|
PKG_VERSION:=2.3.1
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=ftp://ftp.unixodbc.org/pub/unixODBC/
|
||||||
|
PKG_SOURCE:=unixODBC-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_MD5SUM:=86788d4006620fa1f171c13d07fdcaab
|
||||||
|
PKG_BUILD_DIR:=$(BUILD_DIR)/unixODBC-$(PKG_VERSION)
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/package.mk
|
||||||
|
CONFIGURE_ARGS += \
|
||||||
|
--disable-gui \
|
||||||
|
--with-pic \
|
||||||
|
--enable-drivers
|
||||||
|
|
||||||
|
define Package/unixodbc/Default
|
||||||
|
SUBMENU:=database
|
||||||
|
TITLE:=unixODBC
|
||||||
|
URL:=http://www.unixodbc.org/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/unixodbc
|
||||||
|
$(call Package/unixodbc/Default)
|
||||||
|
TITLE+= (libraries)
|
||||||
|
SECTION:=libs
|
||||||
|
CATEGORY:=Libraries
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/unixodbc/description
|
||||||
|
unixODBC is an Open Source ODBC sub-system and an ODBC SDK for Linux,
|
||||||
|
Mac OSX, and UNIX.
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/unixodbc-tools
|
||||||
|
$(call Package/unixodbc/Default)
|
||||||
|
SECTION:=utils
|
||||||
|
CATEGORY:=Utilities
|
||||||
|
TITLE+= Tools
|
||||||
|
DEPENDS:=+unixodbc
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/unixodbc-tools/description
|
||||||
|
Command Line Tools to help install a driver and work with SQL.
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/pgsqlodbc
|
||||||
|
$(call Package/unixodbc/Default)
|
||||||
|
SECTION:=libs
|
||||||
|
CATEGORY:=Libraries
|
||||||
|
TITLE:=Postgresql driver for ODBC
|
||||||
|
DEPENDS:=+unixodbc +libpq
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/pgsqlodbc/description
|
||||||
|
Postgresql driver for ODBC.
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/Compile
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
$(MAKE_FLAGS) \
|
||||||
|
ARCH="$(ARCH)" \
|
||||||
|
CC="$(TARGET_CC)"
|
||||||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||||||
|
$(MAKE_FLAGS) \
|
||||||
|
ARCH="$(ARCH)" \
|
||||||
|
install -i
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Build/InstallDev
|
||||||
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
||||||
|
$(INSTALL_DIR) $(1)/usr/include
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/*.h $(1)/usr/include/
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
||||||
|
$(INSTALL_DIR) $(1)/etc
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/etc/odbc* $(1)/etc/
|
||||||
|
$(INSTALL_DIR) $(1)/etc/ODBCDataSources
|
||||||
|
$(TARGET_CC) $(TARGET_CFLAGS) -E ./files/unixodbc_conf.h | tr '@' '\#' >$(1)/usr/include/unixodbc_conf.h
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/unixodbc/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libodbc[ci]*so* $(1)/usr/lib/
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libodbc.*so* $(1)/usr/lib/
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libnn*so* $(1)/usr/lib/
|
||||||
|
$(INSTALL_DIR) $(1)/etc
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/etc/odbc* $(1)/etc/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/unixodbc-tools/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/bin
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin/
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Package/pgsqlodbc/install
|
||||||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||||||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libodbcpsql*so* $(1)/usr/lib/
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call BuildPackage,unixodbc))
|
||||||
|
$(eval $(call BuildPackage,unixodbc-tools))
|
||||||
|
$(eval $(call BuildPackage,pgsqlodbc))
|
22
libs/unixodbc/files/unixodbc_conf.h
Normal file
22
libs/unixodbc/files/unixodbc_conf.h
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
@ifndef HAVE_UNISTD_H
|
||||||
|
@define HAVE_UNISTD_H
|
||||||
|
@endif
|
||||||
|
@ifndef HAVE_PWD_H
|
||||||
|
@define HAVE_PWD_H
|
||||||
|
@endif
|
||||||
|
@ifndef HAVE_SYS_TYPES_H
|
||||||
|
@define HAVE_SYS_TYPES_H
|
||||||
|
@endif
|
||||||
|
@ifndef HAVE_LONG_LONG
|
||||||
|
@define HAVE_LONG_LONG
|
||||||
|
@endif
|
||||||
|
@ifndef ODBCINT64
|
||||||
|
@define ODBCINT64 long
|
||||||
|
@endif
|
||||||
|
@ifndef UODBCINT64
|
||||||
|
@define UODBCINT64 unsigned long
|
||||||
|
@endif
|
||||||
|
@ifndef SIZEOF_LONG_INT
|
||||||
|
@define SIZEOF_LONG_INT __SIZEOF_LONG__
|
||||||
|
@endif
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user