diff options
author | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-18 06:34:57 +0000 |
---|---|---|
committer | nico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-04-18 06:34:57 +0000 |
commit | 72d1969f67c376a8513904705f9ac0febe07f991 (patch) | |
tree | e6ebdb7b1ef3288be5c8d868847974350beaf317 /openwrt/package/postgresql | |
parent | 818f981f7736524e5da3bc287471245e8bab8d68 (diff) |
Uniformize package Makefile, move ipkg related files to ./ipkg
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@665 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'openwrt/package/postgresql')
-rw-r--r-- | openwrt/package/postgresql/Makefile | 4 | ||||
-rw-r--r-- | openwrt/package/postgresql/ipkg/libpq-dev/CONTROL/control | 8 | ||||
-rw-r--r-- | openwrt/package/postgresql/ipkg/libpq.control (renamed from openwrt/package/postgresql/libpq.control) | 0 | ||||
-rw-r--r-- | openwrt/package/postgresql/ipkg/libpq/CONTROL/control | 8 | ||||
-rw-r--r-- | openwrt/package/postgresql/ipkg/pgsql-utils/CONTROL/control | 9 | ||||
-rw-r--r-- | openwrt/package/postgresql/ipkg/rules | 150 | ||||
-rw-r--r-- | openwrt/package/postgresql/ipkg/version | 1 |
7 files changed, 2 insertions, 178 deletions
diff --git a/openwrt/package/postgresql/Makefile b/openwrt/package/postgresql/Makefile index 3582a89169..12fbde5001 100644 --- a/openwrt/package/postgresql/Makefile +++ b/openwrt/package/postgresql/Makefile @@ -87,9 +87,9 @@ $(STAGING_DIR)/usr/lib/libpq.so: $(PKG_BUILD_DIR)/.built install $(IPKG_LIBPQ): $(STAGING_DIR)/usr/lib/libpq.so - $(SCRIPT_DIR)/make-ipkg-dir.sh $(IDIR_LIBPQ) libpq.control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) + $(SCRIPT_DIR)/make-ipkg-dir.sh $(IDIR_LIBPQ) ./ipkg/libpq.control $(PKG_VERSION)-$(PKG_RELEASE) $(ARCH) mkdir -p $(IDIR_LIBPQ)/usr/lib - cp -fp $(STAGING_DIR)/usr/lib/libpq.so.* $(IDIR_LIBPQ)/usr/lib/ + cp -fpR $(STAGING_DIR)/usr/lib/libpq.so.* $(IDIR_LIBPQ)/usr/lib/ $(STRIP) $(IDIR_LIBPQ)/usr/lib/*.so* mkdir -p $(PACKAGE_DIR) $(IPKG_BUILD) $(IDIR_LIBPQ) $(PACKAGE_DIR) diff --git a/openwrt/package/postgresql/ipkg/libpq-dev/CONTROL/control b/openwrt/package/postgresql/ipkg/libpq-dev/CONTROL/control deleted file mode 100644 index 0e0d622cd8..0000000000 --- a/openwrt/package/postgresql/ipkg/libpq-dev/CONTROL/control +++ /dev/null @@ -1,8 +0,0 @@ -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 diff --git a/openwrt/package/postgresql/libpq.control b/openwrt/package/postgresql/ipkg/libpq.control index 56bdf2e728..56bdf2e728 100644 --- a/openwrt/package/postgresql/libpq.control +++ b/openwrt/package/postgresql/ipkg/libpq.control diff --git a/openwrt/package/postgresql/ipkg/libpq/CONTROL/control b/openwrt/package/postgresql/ipkg/libpq/CONTROL/control deleted file mode 100644 index 56bdf2e728..0000000000 --- a/openwrt/package/postgresql/ipkg/libpq/CONTROL/control +++ /dev/null @@ -1,8 +0,0 @@ -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 diff --git a/openwrt/package/postgresql/ipkg/pgsql-utils/CONTROL/control b/openwrt/package/postgresql/ipkg/pgsql-utils/CONTROL/control deleted file mode 100644 index 6bda983e37..0000000000 --- a/openwrt/package/postgresql/ipkg/pgsql-utils/CONTROL/control +++ /dev/null @@ -1,9 +0,0 @@ -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 diff --git a/openwrt/package/postgresql/ipkg/rules b/openwrt/package/postgresql/ipkg/rules deleted file mode 100644 index ed5b3ee0ec..0000000000 --- a/openwrt/package/postgresql/ipkg/rules +++ /dev/null @@ -1,150 +0,0 @@ -#!/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 diff --git a/openwrt/package/postgresql/ipkg/version b/openwrt/package/postgresql/ipkg/version deleted file mode 100644 index dfa12552d8..0000000000 --- a/openwrt/package/postgresql/ipkg/version +++ /dev/null @@ -1 +0,0 @@ -7.4.6-3 |