1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

Add mysql and postgresql packages

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@499 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2005-04-01 00:05:07 +00:00
parent 9bc0e2521a
commit df643b093e
18 changed files with 3977 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_LIBPQ
tristate "libpq (PostgreSQL client library)"
default m
help
PostgreSQL client library.
http://www.postgresql.org/

View File

@@ -0,0 +1,57 @@
# $Id$
include $(TOPDIR)/rules.mk
PKG_NAME := postgresql
PKG_VERSION := 7.4.6
PKG_RELEASE := 3
PKG_MD5SUM := f0ea2b372a7bdaf2613e92176ebf5e0f
PKG_SOURCE_SITE := \
ftp://ftp3.us.postgresql.org/pub/postgresql/source/v$(PKG_VERSION)/ \
ftp://ftp.br.postgresql.org/pub/PostgreSQL/source/v$(PKG_VERSION)/ \
ftp://ftp.au.postgresql.org/pub/postgresql/source/v$(PKG_VERSION)/ \
ftp://ftp.tw.postgresql.org/pub/postgresql/source/v$(PKG_VERSION)/ \
http://nthill.free.fr/openwrt/sources/$(PKG_NAME)/
PKG_SOURCE_FILE := $(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_CAT := bzcat
PKG_SOURCE_DIR := $(PKG_NAME)-$(PKG_VERSION)
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_SOURCE_DIR)
PKG_IPK := $(PACKAGE_DIR)/libpq_$(PKG_VERSION)-$(PKG_RELEASE)_$(ARCH).ipk
$(DL_DIR)/$(PKG_SOURCE_FILE):
mkdir -p $(DL_DIR)
$(SCRIPT_DIR)/download.pl $(DL_DIR) $(PKG_SOURCE_FILE) $(PKG_MD5SUM) $(PKG_SOURCE_SITE)
$(PKG_BUILD_DIR)/ipkg/rules: $(DL_DIR)/$(PKG_SOURCE_FILE)
mkdir -p $(TOOL_BUILD_DIR)
rm -rf $(PKG_BUILD_DIR)
$(PKG_SOURCE_CAT) $(DL_DIR)/$(PKG_SOURCE_FILE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) -
$(PATCH) $(PKG_BUILD_DIR) ./patches
cp -fpR ./ipkg $(PKG_BUILD_DIR)/
chmod a+x $(PKG_BUILD_DIR)/ipkg/rules
touch $(PKG_BUILD_DIR)/ipkg/rules
$(PKG_IPK): $(PKG_BUILD_DIR)/ipkg/rules
cd $(PKG_BUILD_DIR); \
TOPDIR="$(TOPDIR)" IPKG_RULES_INC="$(TOPDIR)/rules.mk" \
INSTALL_DIR="$(STAGING_DIR)" \
./ipkg/rules package
$(IPKG_STATE_DIR)/info/libpq.list: $(PKG_IPK)
$(IPKG) install $(PKG_IPK)
source: $(DL_DIR)/$(PKG_SOURCE_FILE)
prepare: $(PKG_BUILD_DIR)/ipkg/rules
compile: $(PKG_IPK)
install: $(IPKG_STATE_DIR)/info/libpq.list
clean:
-cd $(PKG_BUILD_DIR); \
TOPDIR="$(TOPDIR)" IPKG_RULES_INC="$(TOPDIR)/rules.mk" \
INSTALL_DIR="$(STAGING_DIR)" \
./ipkg/rules clean
rm -rf $(PKG_BUILD_DIR)
rm -f $(PKG_IPK)

View File

@@ -0,0 +1,8 @@
Package: libpq-dev
Priority: optional
Section: devel
Version: [TBDL]
Architecture: [TBDL]
Maintainer: Nico <nthill@free.fr>
Source: http://nthill.free.fr/openwrt/sources/postgresql/
Description: PostgreSQL development package

View File

@@ -0,0 +1,8 @@
Package: libpq
Priority: optional
Section: libs
Version: [TBDL]
Architecture: [TBDL]
Maintainer: Nico <nthill@free.fr>
Source: http://nthill.free.fr/openwrt/sources/postgresql/
Description: PostgreSQL client library

View File

@@ -0,0 +1,9 @@
Package: pgsql-utils
Priority: optional
Section: libs
Version: [TBDL]
Architecture: [TBDL]
Maintainer: Nico <nthill@free.fr>
Source: http://nthill.free.fr/openwrt/sources/postgresql/
Description: some PostgreSQL client utilities
Depends: libpq

View File

@@ -0,0 +1,150 @@
#!/usr/bin/make -f
ifneq ($(strip ${IPKG_RULES_INC}),)
include $(IPKG_RULES_INC)
endif
##
PKG_VERSION := $(shell cat ./ipkg/version)
CURRENT_DIR := $(shell pwd)
INSTALL_DIR ?= $(CURRENT_DIR)/ipkg-install
unexport INSTALL_DIR
I_LIBPQ := ipkg/libpq
I_LIBPQ_DEV := ipkg/libpq-dev
I_PGSQL_UTILS := ipkg/pgsql-utils
BUILD_DEPS := \
# $(STAGING_DIR)/usr/include/zlib.h \
CONFIGURE_OPTS = \
--enable-shared \
--enable-static \
--disable-integer-datetimes \
--disable-rpath \
--without-tcl \
--without-tk \
--without-perl \
--without-python \
--without-java \
--without-krb4 \
--without-krb5 \
--without-pam \
--without-openssl \
--without-rendezvous \
--without-readline \
--with-zlib \
##
all: package
.stamp-configured: $(BUILD_DEPS)
rm -rf config.cache
$(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 \
--datadir=/usr/share \
--includedir=/usr/include \
--libdir=/usr/lib \
--libexecdir=/usr/lib \
--localstatedir=/var \
--mandir=/usr/share/man \
--sbindir=/usr/sbin \
--sysconfdir=/etc \
$(DISABLE_LARGEFILE) \
$(DISABLE_NLS) \
$(CONFIGURE_OPTS) \
touch .stamp-configured
.stamp-built: .stamp-configured
$(MAKE)
touch .stamp-built
$(INSTALL_DIR)/usr/bin/psql: .stamp-built
mkdir -p $(INSTALL_DIR)
$(MAKE) \
DESTDIR="$(INSTALL_DIR)" \
install
configure: .stamp-configured
build: .stamp-built
install: $(INSTALL_DIR)/usr/bin/psql
package: $(INSTALL_DIR)/usr/bin/psql
mkdir -p $(I_LIBPQ)/usr/lib/
cp -fpR $(INSTALL_DIR)/usr/lib/libpq*.so.* $(I_LIBPQ)/usr/lib/
$(STRIP) $(I_LIBPQ)/usr/lib/lib*.so.*
mkdir -p $(I_LIBPQ_DEV)/usr/bin
cp -fpR $(INSTALL_DIR)/usr/bin/pg_config $(I_LIBPQ_DEV)/usr/bin/
mkdir -p $(I_LIBPQ_DEV)/usr/include
cp -fpR $(INSTALL_DIR)/usr/include/* $(I_LIBPQ_DEV)/usr/include/
mkdir -p $(I_LIBPQ_DEV)/usr/lib/
cp -fpR $(INSTALL_DIR)/usr/lib/lib*.a $(I_LIBPQ_DEV)/usr/lib/
cp -fpR $(INSTALL_DIR)/usr/lib/lib*.so* $(I_LIBPQ_DEV)/usr/lib/
mkdir -p $(I_PGSQL_UTILS)/usr/bin
cp -fpR $(INSTALL_DIR)/usr/bin/psql $(I_PGSQL_UTILS)/usr/bin/
$(STRIP) $(I_PGSQL_UTILS)/usr/bin/*
chmod 0755 ipkg/*/CONTROL/
chmod 0644 ipkg/*/CONTROL/control
perl -pi -e "s/^Arch.*:.*/Architecture: $(ARCH)/g" ipkg/*/CONTROL/control
ifneq ($(strip $(PKG_VERSION)),)
perl -pi -e "s/^Vers.*:.*/Version: $(PKG_VERSION)/g" ipkg/*/CONTROL/control
endif
$(IPKG_BUILD) $(I_LIBPQ) $(IPKG_TARGET_DIR)
$(IPKG_BUILD) $(I_LIBPQ_DEV) $(IPKG_TARGET_DIR)
$(IPKG_BUILD) $(I_PGSQL_UTILS) $(IPKG_TARGET_DIR)
clean:
$(MAKE) \
DESTDIR="$(INSTALL_DIR)" \
uninstall clean
rm -rf .stamp-* \
$(I_LIBPQ)/usr \
$(I_LIBPQ_DEV)/usr \
$(I_PGSQL_UTILS)/usr \
control:
@cat $(I_LIBPQ)/CONTROL/control
@echo
@cat $(I_LIBPQ_DEV)/CONTROL/control
@echo
@cat $(I_PGSQL_UTILS)/CONTROL/control
@echo
.PHONY: configure build install package clean control

View File

@@ -0,0 +1 @@
7.4.6-3

File diff suppressed because it is too large Load Diff