fix pg_config needing to be compiled on the host env for php5
[packages.git] / libs / postgresql / Makefile
1
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=postgresql
12 PKG_VERSION:=8.2.3
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
17 PKG_SOURCE_URL:=\
18         ftp://ftp.us.postgresql.org/pub/mirrors/postgresql/source/v$(PKG_VERSION) \
19         ftp://ftp-archives.postgresql.org/pub/source/v$(PKG_VERSION)
20 PKG_MD5SUM:=cb47771004d53505200ffd00ac45bc32
21 PKG_CAT:=bzcat
22
23 PKG_BUILD_DEPENDS:=libnotimpl
24
25 PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)/ipkg-install
26
27 include $(INCLUDE_DIR)/package.mk
28
29 define Package/libpq
30   SECTION:=libs
31   CATEGORY:=Libraries
32   DEPENDS:=+zlib
33   TITLE:=PostgreSQL client library
34   DESCRIPTION:=PostgreSQL client library.
35   URL:=http://www.postgresql.org/
36 endef
37
38 define Package/pgsql-cli
39   SECTION:=utils
40   CATEGORY:=Utilities
41   DEPENDS:=+libpq
42   TITLE:=Command Line Interface (CLI) to PostgreSQL databases
43   DESCRIPTION:=Command Line Interface (CLI) to PostgreSQL databases.
44   URL:=http://www.postgresql.org/
45 endef
46
47 define Package/pgsql-server
48   SECTION:=utils
49   CATEGORY:=Utilities
50   DEPENDS:=+libpq
51   TITLE:=PostgreSQL databases Server
52   DESCRIPTION:=PostgreSQL databases Server.
53   URL:=http://www.postgresql.org/
54 endef
55
56 # Need a native ecpg ,pg_config, and zic for build
57 define Build/Configure
58         (cd $(PKG_BUILD_DIR); rm -f config.cache; \
59                 ./configure \
60                         --prefix=/usr \
61                         --exec-prefix=/usr \
62                         --bindir=/usr/bin \
63                         --datadir=/usr/share \
64                         --includedir=/usr/include \
65                         --infodir=/usr/share/info \
66                         --libdir=/usr/lib \
67                         --libexecdir=/usr/lib \
68                         --localstatedir=/var \
69                         --mandir=/usr/share/man \
70                         --sbindir=/usr/sbin \
71                         --sysconfdir=/etc \
72                         $(DISABLE_NLS) \
73                         $(DISABLE_LARGEFILE) \
74                         --enable-shared \
75                         --enable-static \
76                         --disable-integer-datetimes \
77                         --disable-rpath \
78                         --without-java \
79                         --without-krb4 \
80                         --without-krb5 \
81                         --without-openssl \
82                         --without-pam \
83                         --without-perl \
84                         --without-python \
85                         --without-readline \
86                         --without-rendezvous \
87                         --without-tcl \
88                         --without-tk \
89                         --with-zlib="yes" \
90         );
91         $(MAKE) -C $(PKG_BUILD_DIR)/src/interfaces/ecpg/preproc CC="$(HOSTCC)" CFLAGS+="-I../../libpq"
92         mv $(PKG_BUILD_DIR)/src/interfaces/ecpg/preproc/ecpg \
93                 $(PKG_BUILD_DIR)/src/interfaces/ecpg/preproc/ecpg.host
94         $(MAKE) -C $(PKG_BUILD_DIR)/src/timezone CC="$(HOSTCC)"
95         mv $(PKG_BUILD_DIR)/src/timezone/zic $(PKG_BUILD_DIR)/src/timezone/zic.host
96         $(MAKE) -C $(PKG_BUILD_DIR)/src/bin/pg_config CC="$(HOSTCC)"
97         mv $(PKG_BUILD_DIR)/src/bin/pg_config/pg_config \
98                 $(PKG_BUILD_DIR)/src/bin/pg_config/pg_config.host
99         $(MAKE) -C $(PKG_BUILD_DIR) distclean
100
101         (cd $(PKG_BUILD_DIR); rm -f config.cache; \
102                 $(TARGET_CONFIGURE_OPTS) \
103                 CFLAGS="$(TARGET_CFLAGS)" \
104                 CPPFLAGS="$$$$CPPFLAGS $(TARGET_CPPFLAGS)" \
105                 LDFLAGS="$(TARGET_LDFLAGS)" \
106                 LIBS="-lnotimpl" \
107                 ./configure \
108                         --target=$(GNU_TARGET_NAME) \
109                         --host=$(GNU_TARGET_NAME) \
110                         --build=$(GNU_HOST_NAME) \
111                         --program-prefix="" \
112                         --program-suffix="" \
113                         --prefix=/usr \
114                         --exec-prefix=/usr \
115                         --bindir=/usr/bin \
116                         --datadir=/usr/share \
117                         --includedir=/usr/include \
118                         --infodir=/usr/share/info \
119                         --libdir=/usr/lib \
120                         --libexecdir=/usr/lib \
121                         --localstatedir=/var \
122                         --mandir=/usr/share/man \
123                         --sbindir=/usr/sbin \
124                         --sysconfdir=/etc \
125                         $(DISABLE_NLS) \
126                         $(DISABLE_LARGEFILE) \
127                         --enable-shared \
128                         --enable-static \
129                         --disable-integer-datetimes \
130                         --disable-rpath \
131                         --without-java \
132                         --without-krb4 \
133                         --without-krb5 \
134                         --without-openssl \
135                         --without-pam \
136                         --without-perl \
137                         --without-python \
138                         --without-readline \
139                         --without-rendezvous \
140                         --without-tcl \
141                         --without-tk \
142                         --with-zlib="yes" \
143         );
144         $(SED) 's@ECPG = ../../preproc/ecpg@ECPG = ../../preproc/ecpg.host@' $(PKG_BUILD_DIR)/src/interfaces/ecpg/test/Makefile.regress
145         $(SED) 's@\./zic -d@./zic.host -d@' $(PKG_BUILD_DIR)/src/timezone/Makefile
146 endef
147
148 define Build/Compile
149         $(MAKE) -C "$(PKG_BUILD_DIR)" \
150                 DESTDIR="$(PKG_INSTALL_DIR)" \
151                 all install
152 endef
153
154 define Package/libpq/install
155         $(INSTALL_DIR) $(1)/usr/lib
156         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpq.so.* $(1)/usr/lib/
157 endef
158
159 define Package/pgsql-cli/install
160         $(INSTALL_DIR) $(1)/usr/bin
161         $(CP) $(PKG_INSTALL_DIR)/usr/bin/psql $(1)/usr/bin/
162 endef
163
164 define Package/pgsql-server/install
165         $(INSTALL_DIR) $(1)/usr/bin
166         $(INSTALL_DIR) $(1)/usr/share/postgresql
167         $(INSTALL_DIR) $(1)/usr/lib
168         $(INSTALL_DIR) $(1)/etc/init.d
169         $(INSTALL_DIR) $(1)/etc/config
170         $(INSTALL_BIN) \
171                 $(PKG_INSTALL_DIR)/usr/bin/postgres \
172                 $(PKG_INSTALL_DIR)/usr/bin/dropdb \
173                 $(PKG_INSTALL_DIR)/usr/bin/createdb \
174                 $(PKG_INSTALL_DIR)/usr/bin/createuser \
175                 $(PKG_INSTALL_DIR)/usr/bin/dropuser \
176                 $(PKG_INSTALL_DIR)/usr/bin/initdb \
177                 $(PKG_INSTALL_DIR)/usr/bin/pg_config \
178                 $(PKG_INSTALL_DIR)/usr/bin/pg_controldata \
179                 $(PKG_INSTALL_DIR)/usr/bin/pg_ctl \
180                 $(PKG_INSTALL_DIR)/usr/bin/pg_dump \
181                 $(PKG_INSTALL_DIR)/usr/bin/pg_dumpall \
182                 $(PKG_INSTALL_DIR)/usr/bin/pg_restore \
183                 $(PKG_INSTALL_DIR)/usr/bin/vacuumdb \
184                 $(1)/usr/bin
185
186         $(INSTALL_BIN) ./files/postgresql.init $(1)/etc/init.d/postgresql
187
188         $(INSTALL_DATA) \
189                 $(PKG_INSTALL_DIR)/usr/share/postgresql/postgres.bki \
190                 $(PKG_INSTALL_DIR)/usr/share/postgresql/postgres.description \
191                 $(PKG_INSTALL_DIR)/usr/share/postgresql/conversion_create.sql \
192                 $(PKG_INSTALL_DIR)/usr/share/postgresql/information_schema.sql \
193                 $(PKG_INSTALL_DIR)/usr/share/postgresql/pg_hba.conf.sample \
194                 $(PKG_INSTALL_DIR)/usr/share/postgresql/pg_ident.conf.sample \
195                 $(PKG_INSTALL_DIR)/usr/share/postgresql/pg_service.conf.sample \
196                 $(PKG_INSTALL_DIR)/usr/share/postgresql/postgresql.conf.sample \
197                 $(PKG_INSTALL_DIR)/usr/share/postgresql/sql_features.txt \
198                 $(PKG_INSTALL_DIR)/usr/share/postgresql/postgres.shdescription \
199                 $(PKG_INSTALL_DIR)/usr/share/postgresql/psqlrc.sample \
200                 $(PKG_INSTALL_DIR)/usr/share/postgresql/recovery.conf.sample \
201                 $(PKG_INSTALL_DIR)/usr/share/postgresql/system_views.sql \
202                 $(1)/usr/share/postgresql
203
204                 $(INSTALL_DATA) ./files/postgresql.config $(1)/etc/config/postgresql
205
206                 $(CP) -r \
207                         $(PKG_INSTALL_DIR)/usr/share/postgresql/timezone \
208                         $(PKG_INSTALL_DIR)/usr/share/postgresql/timezonesets \
209                         $(1)/usr/share/postgresql
210
211                 $(CP) -r \
212                         $(PKG_INSTALL_DIR)/usr/lib/postgresql \
213                         $(1)/usr/lib
214 endef
215
216 define Package/pgsql-server/postinst
217 #!/bin/sh
218 grep -q '^postgres:' /etc/passwd && exit 0
219
220 if [ -e /bin/addgroup ]; then
221   /bin/addgroup postgres
222   RG=$$?
223
224   if [ -e /bin/adduser ]; then
225     /bin/adduser -h /tmp -H -g 'PostgreSQL administrator' -s /bin/ash -D -H -G postgres postgres
226         RU=$$?
227   fi
228 fi
229
230 if [ -z "$${RG}" -o -z "$${RU}" ]; then
231   echo "Could not find user utils, you will need to create the postgres user by hand"
232   exit 
233 fi
234
235 if [ "$${RG}" != "0" -o "$${RU}" != "0" ]; then
236   echo "Failed to created postgres user"
237   exit 1
238 fi
239 endef
240
241 define Build/InstallDev
242         mkdir -p $(STAGING_DIR)/usr/bin
243         $(CP) $(PKG_BUILD_DIR)/src/bin/pg_config/pg_config.host $(STAGING_DIR)/usr/bin/pg_config
244         mkdir -p $(STAGING_DIR)/usr/include
245         $(CP) $(PKG_INSTALL_DIR)/usr/include/libpq $(STAGING_DIR)/usr/include/
246         $(CP) $(PKG_INSTALL_DIR)/usr/include/libpq-fe.h $(STAGING_DIR)/usr/include/
247         $(CP) $(PKG_INSTALL_DIR)/usr/include/pg_config.h $(STAGING_DIR)/usr/include/
248         $(CP) $(PKG_INSTALL_DIR)/usr/include/postgres_ext.h $(STAGING_DIR)/usr/include/
249         $(CP) $(PKG_INSTALL_DIR)/usr/include/postgresql $(STAGING_DIR)/usr/include/
250         mkdir -p $(STAGING_DIR)/usr/lib
251         $(CP) $(PKG_INSTALL_DIR)/usr/lib/libpq.{a,so*} $(STAGING_DIR)/usr/lib/
252         $(CP) $(PKG_BUILD_DIR)/src/interfaces/ecpg/preproc/ecpg.host $(STAGING_DIR)/usr/bin/ecpg
253         $(CP) $(PKG_BUILD_DIR)/src/timezone/zic.host $(STAGING_DIR)/usr/bin/zic
254 endef
255
256 define Build/UninstallDev
257         rm -rf \
258                 $(STAGING_DIR)/usr/bin/pg_config \
259                 $(STAGING_DIR)/usr/include/libpq \
260                 $(STAGING_DIR)/usr/include/libpq-fe.h \
261                 $(STAGING_DIR)/usr/include/pg_config.h \
262                 $(STAGING_DIR)/usr/include/postgres_ext.h \
263                 $(STAGING_DIR)/usr/include/postgresql \
264                 $(STAGING_DIR)/usr/lib/libpq.{a,so*} \
265                 $(STAGING_DIR)/usr/bin/ecpg \
266                 $(STAGING_DIR)/usr/bin/zic
267 endef
268
269 $(eval $(call BuildPackage,libpq))
270 $(eval $(call BuildPackage,pgsql-cli))
271 $(eval $(call BuildPackage,pgsql-server))