[packages] remove usages of $(CONFIG_LARGEFILE) and $(DISABLE_LARGEFILE)
[openwrt/svn-archive/archive.git] / libs / postgresql / Makefile
1 #
2 # Copyright (C) 2006-2010 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=postgresql
11 PKG_VERSION:=9.0.1
12 PKG_RELEASE:=1
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
15 PKG_SOURCE_URL:=\
16 http://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/v$(PKG_VERSION) \
17 http://ftp.be.postgresql.org/postgresql/source/v$(PKG_VERSION) \
18 ftp://ftp-archives.postgresql.org/pub/source/v$(PKG_VERSION)
19 PKG_MD5SUM:=57ba57e43cfe29e16dacbf5789be98d1
20 PKG_BUILD_PARALLEL:=1
21
22 include $(INCLUDE_DIR)/package.mk
23
24 define Package/libpq
25 SECTION:=libs
26 CATEGORY:=Libraries
27 DEPENDS:=+zlib +libreadline +libncurses +coreutils-su
28 TITLE:=PostgreSQL client library
29 URL:=http://www.postgresql.org/
30 SUBMENU:=database
31 endef
32
33 define Package/libpq/description
34 PostgreSQL client library.
35 endef
36
37 define Package/pgsql-cli
38 SECTION:=utils
39 CATEGORY:=Utilities
40 DEPENDS:=+libpq
41 TITLE:=Command Line Interface (CLI) to PostgreSQL databases
42 URL:=http://www.postgresql.org/
43 SUBMENU:=database
44 endef
45
46 define Package/pgsql-cli/description
47 Command Line Interface (CLI) to PostgreSQL databases.
48 endef
49
50 define Package/pgsql-server
51 SECTION:=utils
52 CATEGORY:=Utilities
53 DEPENDS:=+libpq
54 TITLE:=PostgreSQL databases Server
55 URL:=http://www.postgresql.org/
56 SUBMENU:=database
57 endef
58
59 define Package/pgsql-server/description
60 PostgreSQL databases Server.
61 endef
62
63 # Need a native ecpg ,pg_config, and zic for build
64 define Build/Configure
65 (cd $(PKG_BUILD_DIR); rm -f config.cache; \
66 ./configure \
67 --prefix=/usr \
68 --exec-prefix=/usr \
69 --bindir=/usr/bin \
70 --datadir=/usr/share \
71 --includedir=/usr/include \
72 --infodir=/usr/share/info \
73 --libdir=/usr/lib \
74 --libexecdir=/usr/lib \
75 --localstatedir=/var \
76 --mandir=/usr/share/man \
77 --sbindir=/usr/sbin \
78 --sysconfdir=/etc \
79 $(DISABLE_NLS) \
80 --enable-shared \
81 --enable-static \
82 --disable-integer-datetimes \
83 --disable-rpath \
84 --without-java \
85 --without-krb4 \
86 --without-krb5 \
87 --without-openssl \
88 --without-pam \
89 --without-perl \
90 --without-python \
91 --without-readline \
92 --without-rendezvous \
93 --without-tcl \
94 --without-tk \
95 --with-zlib="yes" \
96 --enable-depend \
97 --with-system-timezone=/tmp \
98 );
99 $(MAKE) -C $(PKG_BUILD_DIR)/src/interfaces/ecpg/preproc CC="$(HOSTCC)" CFLAGS+="-I../../libpq"
100 mv $(PKG_BUILD_DIR)/src/interfaces/ecpg/preproc/ecpg \
101 $(PKG_BUILD_DIR)/src/interfaces/ecpg/preproc/ecpg.host
102 $(MAKE) -C $(PKG_BUILD_DIR)/src/timezone CC="$(HOSTCC)"
103 mv $(PKG_BUILD_DIR)/src/timezone/zic $(PKG_BUILD_DIR)/host-zic
104 $(INSTALL_DIR) $(STAGING_DIR)/host/bin/
105 $(CP) $(PKG_BUILD_DIR)/host-zic $(STAGING_DIR)/host/bin/zic
106 $(MAKE) -C $(PKG_BUILD_DIR)/src/bin/pg_config CC="$(HOSTCC)"
107 mv $(PKG_BUILD_DIR)/src/bin/pg_config/pg_config \
108 $(PKG_BUILD_DIR)/src/bin/pg_config/pg_config.host
109 $(MAKE) -C $(PKG_BUILD_DIR) distclean
110
111 (cd $(PKG_BUILD_DIR); rm -f config.cache; \
112 $(TARGET_CONFIGURE_OPTS) \
113 CFLAGS="$(TARGET_CFLAGS)" \
114 CPPFLAGS="$$$$CPPFLAGS $(TARGET_CPPFLAGS)" \
115 LDFLAGS="$(TARGET_LDFLAGS)" \
116 ./configure \
117 --target=$(GNU_TARGET_NAME) \
118 --host=$(GNU_TARGET_NAME) \
119 --build=$(GNU_HOST_NAME) \
120 --program-prefix="" \
121 --program-suffix="" \
122 --prefix=/usr \
123 --exec-prefix=/usr \
124 --bindir=/usr/bin \
125 --datadir=/usr/share \
126 --includedir=/usr/include \
127 --infodir=/usr/share/info \
128 --libdir=/usr/lib \
129 --libexecdir=/usr/lib \
130 --localstatedir=/var \
131 --mandir=/usr/share/man \
132 --sbindir=/usr/sbin \
133 --sysconfdir=/etc \
134 $(DISABLE_NLS) \
135 $(DISABLE_LARGEFILE) \
136 --enable-shared \
137 --enable-static \
138 --disable-integer-datetimes \
139 --disable-rpath \
140 --without-java \
141 --without-krb4 \
142 --without-krb5 \
143 --without-openssl \
144 --without-pam \
145 --without-perl \
146 --without-python \
147 --without-rendezvous \
148 --without-tcl \
149 --without-tk \
150 --with-zlib="yes" \
151 --enable-depend \
152 $(if $(CONFIG_TARGET_avr32),--disable-spinlocks) \
153 );
154 $(SED) 's@ECPG = ../../preproc/ecpg@ECPG = ../../preproc/ecpg.host@' $(PKG_BUILD_DIR)/src/interfaces/ecpg/test/Makefile.regress
155 endef
156
157 TARGET_CFLAGS += $(FPIC)
158
159 define Build/Compile
160 $(MAKE) $(PKG_JOBS) -C "$(PKG_BUILD_DIR)" \
161 DESTDIR="$(PKG_INSTALL_DIR)" \
162 all
163 $(MAKE) $(PKG_JOBS) -C "$(PKG_BUILD_DIR)" \
164 DESTDIR="$(PKG_INSTALL_DIR)" \
165 install
166 endef
167
168 define Package/libpq/install
169 $(INSTALL_DIR) $(1)/usr/lib
170 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpq.so.* $(1)/usr/lib/
171 endef
172
173 define Package/pgsql-cli/install
174 $(INSTALL_DIR) $(1)/usr/bin
175 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/psql $(1)/usr/bin/
176 endef
177
178 define Package/pgsql-server/install
179 $(INSTALL_DIR) $(1)/usr/bin
180 $(INSTALL_DIR) $(1)/usr/share/postgresql
181 $(INSTALL_DIR) $(1)/usr/lib
182 $(INSTALL_DIR) $(1)/etc/init.d
183 $(INSTALL_DIR) $(1)/etc/config
184 $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/* $(1)/usr/bin
185 ln -sf postgres $(1)/usr/bin/postmaster
186
187 $(INSTALL_BIN) ./files/postgresql.init $(1)/etc/init.d/postgresql
188
189 $(CP) -r $(PKG_INSTALL_DIR)/usr/share/postgresql/* \
190 $(1)/usr/share/postgresql
191
192 $(INSTALL_DATA) ./files/postgresql.config $(1)/etc/config/postgresql
193
194 $(CP) -r \
195 $(PKG_INSTALL_DIR)/usr/lib/postgresql \
196 $(1)/usr/lib
197 endef
198
199 define Package/pgsql-server/postinst
200 #!/bin/sh
201 grep -q '^postgres:' /etc/passwd && exit 0
202 group=$$(grep '^postgres:' /etc/group | cut -f3 -d:)
203 if [ -z "$${group}" ] ; then
204 group=1000
205 tst=$$(cat /etc/group | grep ":$${group}:")
206 while [ -n "$${tst}" ] ; do
207 group=$$(($${group}+1))
208 tst=$$(cat /etc/group | grep ":$${group}:")
209 done
210 echo "postgres:x:$${group}:" >>/etc/group
211 fi
212
213 user=$$(cat /etc/passwd | grep "^postgres:")
214 if [ -z "$${user}" ] ; then
215 num="$${group}"
216 tst=$$(cat /etc/passwd | grep ":.*:$${num}:")
217 while [ -n "$${tst}" ] ; do
218 num=$$(($${num}+1))
219 tst=$$(cat /etc/passwd | grep ":.*:$${num}:")
220 done
221 echo "postgres:*:$${num}:$${group}:PostgreSQL administrator:/tmp:/bin/ash" >>/etc/passwd
222 fi
223 endef
224
225 define Build/InstallDev
226 $(INSTALL_DIR) $(1)/usr/bin
227 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/bin/pg_config/pg_config.host $(1)/usr/bin/pg_config
228 $(INSTALL_DIR) $(1)/usr/include
229 $(CP) $(PKG_INSTALL_DIR)/usr/include/libpq $(1)/usr/include/
230 $(CP) $(PKG_INSTALL_DIR)/usr/include/libpq-fe.h $(1)/usr/include/
231 $(CP) $(PKG_INSTALL_DIR)/usr/include/pg_config.h $(1)/usr/include/
232 $(CP) $(PKG_INSTALL_DIR)/usr/include/pg_config_manual.h $(1)/usr/include/
233 $(CP) $(PKG_INSTALL_DIR)/usr/include/postgres_ext.h $(1)/usr/include/
234 $(CP) $(PKG_INSTALL_DIR)/usr/include/postgresql $(1)/usr/include/
235 $(INSTALL_DIR) $(1)/usr/lib
236 $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpq.{a,so*} $(1)/usr/lib/
237 $(CP) $(PKG_BUILD_DIR)/src/interfaces/ecpg/preproc/ecpg.host $(1)/usr/bin/ecpg
238 $(CP) $(PKG_BUILD_DIR)/host-zic $(1)/usr/bin/zic
239 endef
240
241 $(eval $(call BuildPackage,libpq))
242 $(eval $(call BuildPackage,pgsql-cli))
243 $(eval $(call BuildPackage,pgsql-server))