blob: 868a2e443cfc4d067b3dcc088d4e9c54229460a1 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001SUMMARY = "PostgreSQL is a powerful, open source relational database system."
2DESCRIPTION = "\
3 PostgreSQL is an advanced Object-Relational database management system \
4 (DBMS) that supports almost all SQL constructs (including \
5 transactions, subselects and user-defined types and functions). The \
6 postgresql package includes the client programs and libraries that \
7 you'll need to access a PostgreSQL DBMS server. These PostgreSQL \
8 client programs are programs that directly manipulate the internal \
9 structure of PostgreSQL databases on a PostgreSQL server. These client \
10 programs can be located on the same machine with the PostgreSQL \
11 server, or may be on a remote machine which accesses a PostgreSQL \
12 server over a network connection. This package contains the docs \
13 in HTML for the whole package, as well as command-line utilities for \
14 managing PostgreSQL databases on a PostgreSQL server. \
15 \
16 If you want to manipulate a PostgreSQL database on a local or remote \
17 PostgreSQL server, you need this package. You also need to install \
18 this package if you're installing the postgresql-server package. \
19"
20HOMEPAGE = "http://www.postgresql.com"
Andrew Geissler9aee5002022-03-30 16:27:02 +000021LICENSE = "0BSD"
Andrew Geissler595f6302022-01-24 19:11:47 +000022DEPENDS = "libnsl2 readline tzcode-native"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050023
24ARM_INSTRUCTION_SET = "arm"
25
Andrew Geissler595f6302022-01-24 19:11:47 +000026SRC_URI = "https://ftp.postgresql.org/pub/source/v${PV}/${BP}.tar.bz2 \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050027 file://postgresql.init \
Andrew Geissler1548c072019-02-22 16:03:50 -060028 file://postgresql-profile \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050029 file://postgresql.pam \
30 file://postgresql-setup \
31 file://postgresql.service \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050032"
33
34LEAD_SONAME = "libpq.so"
35
36# LDFLAGS for shared libraries
37export LDFLAGS_SL = "${LDFLAGS}"
38
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050039inherit autotools pkgconfig perlnative python3native python3targetconfig useradd update-rc.d systemd gettext cpan-base multilib_header
Patrick Williamsb48b7b42016-08-17 15:04:38 -050040
Brad Bishop6e60e8b2018-02-01 10:27:11 -050041CFLAGS += "-I${STAGING_INCDIR}/${PYTHON_DIR} -I${STAGING_INCDIR}/tcl8.6"
Patrick Williamsddad1a12017-02-23 20:36:32 -060042
Patrick Williams213cb262021-08-07 19:21:33 -050043SYSTEMD_SERVICE:${PN} = "postgresql.service"
44SYSTEMD_AUTO_ENABLE:${PN} = "disable"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050045
Patrick Williams213cb262021-08-07 19:21:33 -050046pkg_postinst:${PN} () {
Patrick Williamsb48b7b42016-08-17 15:04:38 -050047 if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd sysvinit', 'true', 'false', d)}; then
48 if [ -n "$D" ]; then
49 OPTS="--root=$D"
50 fi
51 systemctl $OPTS mask postgresql-server.service
52 fi
53}
54
Andrew Geissler595f6302022-01-24 19:11:47 +000055PACKAGECONFIG ??= " \
56 ${@bb.utils.filter('DISTRO_FEATURES', 'pam systemd', d)} \
Patrick Williamsb58112e2024-03-07 11:16:36 -060057 openssl python uuid libxml tcl perl zlib icu \
Andrew Geissler595f6302022-01-24 19:11:47 +000058"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050059PACKAGECONFIG[tcl] = "--with-tcl --with-tclconfig=${STAGING_BINDIR_CROSS},--without-tcl,tcl tcl-native,"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050060PACKAGECONFIG[perl] = "--with-perl,--without-perl,perl,perl"
Andrew Geissler595f6302022-01-24 19:11:47 +000061PACKAGECONFIG[python] = "--with-python,--without-python,python3,python3"
62PACKAGECONFIG[gssapi] = "--with-gssapi,--without-gssapi,krb5"
63PACKAGECONFIG[pam] = "--with-pam,--without-pam,libpam"
64PACKAGECONFIG[ldap] = "--with-ldap,--without-ldap,openldap"
65PACKAGECONFIG[systemd] = "--with-systemd,--without-systemd,systemd systemd-systemctl-native"
66PACKAGECONFIG[uuid] = "--with-uuid=e2fs,--without-uuid,util-linux"
67PACKAGECONFIG[libxml] = "--with-libxml,--without-libxml,libxml2,libxml2"
68PACKAGECONFIG[libxslt] = "--with-libxslt,--without-libxslt,libxslt"
69PACKAGECONFIG[zlib] = "--with-zlib,--without-zlib,zlib"
70PACKAGECONFIG[lz4] = "--with-lz4,--without-lz4,lz4"
71PACKAGECONFIG[openssl] = "--with-ssl=openssl,ac_cv_file__dev_urandom=yes,openssl"
Patrick Williamsb58112e2024-03-07 11:16:36 -060072PACKAGECONFIG[icu] = "--with-icu,--without-icu,icu,icu"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050073
74EXTRA_OECONF += "--enable-thread-safety --disable-rpath \
75 --datadir=${datadir}/${BPN} \
76 --sysconfdir=${sysconfdir}/${BPN} \
77"
Patrick Williams213cb262021-08-07 19:21:33 -050078EXTRA_OECONF:sh4 += "--disable-spinlocks"
Patrick Williamsb48b7b42016-08-17 15:04:38 -050079
Patrick Williams213cb262021-08-07 19:21:33 -050080DEBUG_OPTIMIZATION:remove:mips = " -Og"
81DEBUG_OPTIMIZATION:append:mips = " -O"
82BUILD_OPTIMIZATION:remove:mips = " -Og"
83BUILD_OPTIMIZATION:append:mips = " -O"
Brad Bishopc342db32019-05-15 21:57:59 -040084
Patrick Williams213cb262021-08-07 19:21:33 -050085DEBUG_OPTIMIZATION:remove:mipsel = " -Og"
86DEBUG_OPTIMIZATION:append:mipsel = " -O"
87BUILD_OPTIMIZATION:remove:mipsel = " -Og"
88BUILD_OPTIMIZATION:append:mipsel = " -O"
Brad Bishopc342db32019-05-15 21:57:59 -040089
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080090PACKAGES_DYNAMIC += "^${PN}-plperl \
91 ^${PN}-pltcl \
92 ^${PN}-plpython \
Patrick Williamsb48b7b42016-08-17 15:04:38 -050093"
94
Patrick Williams213cb262021-08-07 19:21:33 -050095python populate_packages:prepend() {
Patrick Williamsb48b7b42016-08-17 15:04:38 -050096
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080097 def fill_more(name):
Patrick Williamsb48b7b42016-08-17 15:04:38 -050098 if name is None or name.strip() == "":
99 return
100
101 fpack=d.getVar('PACKAGES', False) or ""
102 fpack="${PN}-" + name + " " + fpack
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500103 d.setVar('PACKAGES', fpack)
104
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500105 conf=(d.getVar('PACKAGECONFIG') or "").split()
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500106 pack=d.getVar('PACKAGES', False) or ""
107 bb.debug(1, "PACKAGECONFIG=%s" % conf)
108 bb.debug(1, "PACKAGES1=%s" % pack )
109
110 if "perl" in conf :
111 fill_more("plperl")
112
113 if "tcl" in conf:
114 fill_more("pltcl")
115
116 if "python" in conf:
117 fill_more("plpython")
118
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500119 pack=d.getVar('PACKAGES') or ""
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500120 bb.debug(1, "PACKAGES2=%s" % pack)
121
122}
123
Brad Bishop19323692019-04-05 15:28:33 -0400124# This will make native perl use target settings (for include dirs etc.)
125export PERLCONFIGTARGET = "${@is_target(d)}"
126export PERL_ARCHLIB = "${STAGING_LIBDIR}${PERL_OWN_DIR}/perl5/${@get_perl_version(d)}/${@get_perl_arch(d)}"
127
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500128do_configure() {
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500129 # do_configure
130 autotools_do_configure
131
Patrick Williams213cb262021-08-07 19:21:33 -0500132 # do_configure:append
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500133 # workaround perl package related bugs
134 sed -i -e "s:-L/usr/local/lib:-L=/usr/local/lib:g" \
135 ${B}/src/Makefile.global
136 LIBPNA="\${STAGING_LIBDIR_NATIVE}/perl-native"
137 LIBNA="\${STAGING_LIBDIR_NATIVE}"
138 BLIBNA="\${STAGING_BASE_LIBDIR_NATIVE}"
139 sed -i -e "/^perl_archlibexp/s:${LIBPNA}:${STAGING_LIBDIR}:g" \
140 ${B}/src/Makefile.global
Brad Bishop19323692019-04-05 15:28:33 -0400141 sed -i -e "/^perl_privlibexp/s:${libdir}:${STAGING_LIBDIR}:g" \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500142 ${B}/src/Makefile.global
143 # remove the rpath, replace with correct lib path
144 sed -i \
145 -e "/^perl_embed_ldflags/s:-Wl,-rpath,${LIBNA}::g" \
146 -e "/^perl_embed_ldflags/s:-Wl,-rpath,${BLIBNA}::g" \
147 -e "/^perl_embed_ldflags/s:-Wl,-rpath-link,${LIBNA}::g" \
148 -e "/^perl_embed_ldflags/s:-Wl,-rpath-link,${BLIBNA}::g" \
149 -e "/^perl_embed_ldflags/s:${LIBPNA}:${STAGING_LIBDIR}:g" \
150 -e "/^perl_embed_ldflags/s:${LIBNA}:${STAGING_LIBDIR}:g" \
151 -e "/^perl_embed_ldflags/s:${BLIBNA}:${STAGING_BASELIBDIR}:g" \
152 -e "/^TCLSH/s:=.*:= ${bindir}/tclsh:g" \
153 ${B}/src/Makefile.global
154
155 if ${@bb.utils.contains('PACKAGECONFIG', 'perl', 'true', 'false', d)}; then
156 # workaround perl package's libperl.so problem
157 # we are using perlnative so this perl should have same version
158 perl_version=`perl -v 2>/dev/null | \
159 sed -n 's/This is perl.*v[a-z ]*\([0-9]\.[0-9][0-9.]*\).*$/\1/p'`
160 if [ ! -h "${STAGING_LIBDIR}/perl/$perl_version/CORE/libperl.so" -a \
161 ! -h "${STAGING_LIBDIR}/libperl.so" ]; then
162 ln -sf ../../../libperl.so.5 \
163 ${STAGING_LIBDIR}/perl/$perl_version/CORE/libperl.so
164 fi
165 fi
166}
167
Patrick Williams213cb262021-08-07 19:21:33 -0500168do_compile:append() {
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500169 oe_runmake -C contrib all
170}
171
172# server needs to configure user and group
173usernum = "28"
174groupnum = "28"
175USERADD_PACKAGES = "${PN}"
Patrick Williams213cb262021-08-07 19:21:33 -0500176USERADD_PARAM:${PN} = "-M -g postgres -o -r -d ${localstatedir}/lib/${BPN} \
Andrew Geissler1548c072019-02-22 16:03:50 -0600177 -s /bin/sh -c 'PostgreSQL Server' -u ${usernum} postgres"
Patrick Williams213cb262021-08-07 19:21:33 -0500178GROUPADD_PARAM:${PN} = "-g ${groupnum} -o -r postgres"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500179
180INITSCRIPT_PACKAGES = "${PN}"
181INITSCRIPT_NAME = "${BPN}-server"
182INITSCRIPT_PARAMS = "start 64 . stop 36 0 1 2 3 4 5 6 ."
183
Patrick Williams213cb262021-08-07 19:21:33 -0500184do_install:append() {
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500185 # install contrib
186 oe_runmake DESTDIR=${D} -C contrib install
Andrew Geisslerfc113ea2023-03-31 09:59:46 -0500187 oe_multilib_header pg_config.h pg_config_ext.h ecpg_config.h postgresql/server/pg_config.h postgresql/server/pg_config_ext.h
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500188 # install tutorial
189 install -d -m 0755 ${D}${libdir}/${BPN}/tutorial
190 install ${B}/src/tutorial/* ${D}${libdir}/${BPN}/tutorial
191
192 # install COPYRIGHT README HISTORY
193 install -d -m 0755 ${D}${docdir}/${BPN}
Patrick Williamsddad1a12017-02-23 20:36:32 -0600194 for i in ${B}/COPYRIGHT ${B}/README ${B}/HISTORY ${B}/doc/KNOWN_BUGS ${B}/doc/MISSING_FEATURES ${B}/doc/README* ${B}/doc/bug.template; do
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500195 [ -f $i ] && install $i ${D}${docdir}/${BPN}
196 done
197
198 # install dirs and server init
199 install -d ${D}${sysconfdir}/init.d
200 install -m 0755 ${WORKDIR}/${BPN}.init ${D}${sysconfdir}/init.d/${BPN}-server
201 sed -i -e "s/^PGVERSION=.*$/PGVERSION=${PV}/g" ${D}${sysconfdir}/init.d/${BPN}-server
202 install -m 0755 ${WORKDIR}/${BPN}-setup ${D}${bindir}/${BPN}-setup
203 install -d -m 700 ${D}${localstatedir}/lib/${BPN}/data
204 install -d -m 700 ${D}${localstatedir}/lib/${BPN}/backups
Andrew Geissler1548c072019-02-22 16:03:50 -0600205 install -m 644 ${WORKDIR}/${BPN}-profile ${D}${localstatedir}/lib/${BPN}/.profile
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500206 chown -R postgres:postgres ${D}${localstatedir}/lib/${BPN}
207 # multiple server config directory
208 install -d -m 700 ${D}${sysconfdir}/default/${BPN}
209
Patrick Williams92b42cb2022-09-03 06:53:57 -0500210 if ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'true', 'false', d)}; then
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500211 install -d ${D}${sysconfdir}/pam.d
212 install -m 644 ${WORKDIR}/postgresql.pam ${D}${sysconfdir}/pam.d/postgresql
213 fi
214
215 # Install systemd unit files
216 install -d ${D}${systemd_unitdir}/system
217 install -m 0644 ${WORKDIR}/postgresql.service ${D}${systemd_unitdir}/system
218 sed -i -e 's,@BINDIR@,${bindir},g' \
219 ${D}${systemd_unitdir}/system/postgresql.service
Patrick Williams92b42cb2022-09-03 06:53:57 -0500220 # Remove the build path
221 if [ -f ${D}${libdir}/${BPN}/pgxs/src/Makefile.global ]; then
222 sed -i -e 's#${RECIPE_SYSROOT}##g' \
223 -e 's#${RECIPE_SYSROOT_NATIVE}##g' \
224 -e 's#${WORKDIR}##g' \
225 -e 's#${TMPDIR}##g' \
226 ${D}${libdir}/${BPN}/pgxs/src/Makefile.global
227 fi
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500228}
229
230SSTATE_SCAN_FILES += "Makefile.global"
Patrick Williams213cb262021-08-07 19:21:33 -0500231SSTATE_SCAN_FILES:remove = "*_config"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500232
Patrick Williamsb58112e2024-03-07 11:16:36 -0600233postgresql_fix_sources () {
234 for f in ${PKGD}${TARGET_DBGSRC_DIR}/src/pl/plperl/Util.c \
235 ${PKGD}${TARGET_DBGSRC_DIR}/src/pl/plperl/SPI.c; do
236 if [ -e $f ]; then
237 sed -i -e 's#${B}/../${P}#${TARGET_DBGSRC_DIR}#g' $f
238 fi
239 done
240}
241PACKAGESPLITFUNCS =+ "postgresql_fix_sources"
242
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500243PACKAGES =+ "${PN}-client ${PN}-server-dev ${PN}-timezone \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800244 libecpg-compat libecpg-compat-dev \
245 libecpg libecpg-dev libecpg-staticdev libecpg-doc \
246 libpq libpq-dev libpq-staticdev \
247 libpgtypes libpgtypes-staticdev libpgtypes-dev \
248 ${PN}-contrib \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500249"
250
Patrick Williams213cb262021-08-07 19:21:33 -0500251RPROVIDES:${PN}-dbg += "libecpg-compat-dbg \
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800252 libecpg-dbg \
253 libpq-dbg \
254 libpgtypes-dbg \
255 ${PN}-contrib-dbg \
256 ${PN}-pltcl-dbg \
257 ${PN}-plpython-dbg \
258 ${PN}-plperl-dbg \
259 "
260
Patrick Williams213cb262021-08-07 19:21:33 -0500261FILES:${PN} += "${sysconfdir}/init.d/${BPN}-server \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500262 ${localstatedir}/lib/${BPN}/data ${localstatedir}/lib/${BPN}/backups \
Andrew Geissler1548c072019-02-22 16:03:50 -0600263 ${localstatedir}/lib/${BPN}/.profile ${sysconfdir}/default/${BPN} \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500264 ${libdir}/${BPN}/dict_snowball.so ${libdir}/${BPN}/plpgsql.so \
265 ${libdir}/${BPN}/euc2004_sjis2004.so \
266 ${libdir}/${BPN}/libpqwalreceiver.so \
267 ${libdir}/${BPN}/*_and_*.so \
268 ${@'${sysconfdir}/pam.d/postgresql' \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500269 if 'pam' == d.getVar('enable_pam') \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500270 else ''} \
271"
272
Patrick Williams213cb262021-08-07 19:21:33 -0500273FILES:${PN}-client = "${bindir}/clusterdb \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500274 ${bindir}/createdb \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500275 ${bindir}/createuser \
276 ${bindir}/dropdb \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500277 ${bindir}/dropuser \
278 ${bindir}/pg_dump \
279 ${bindir}/pg_dumpall \
280 ${bindir}/pg_restore \
281 ${bindir}/psql \
282 ${bindir}/reindexdb \
283 ${bindir}/vacuumdb \
284 ${bindir}/vacuumlo \
285 ${datadir}/${BPN}/psqlrc.sample \
286"
Patrick Williams213cb262021-08-07 19:21:33 -0500287FILES:${PN}-client-doc = "${mandir}/man1/clusterdb.* \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500288 ${mandir}/man1/createdb.* ${mandir}/man1/createlang.* \
289 ${mandir}/man1/createuser.* ${mandir}/man1/dropdb.* \
290 ${mandir}/man1/droplang.* ${mandir}/man1/dropuser.* \
291 ${mandir}/man1/pg_dump.* ${mandir}/man1/pg_dumpall.* \
292 ${mandir}/man1/pg_restore.* ${mandir}/man1/psql.* \
293 ${mandir}/man1/reindexdb.* ${mandir}/man1/vacuumdb.* \
294 ${mandir}/man7/* \
295"
Patrick Williams213cb262021-08-07 19:21:33 -0500296FILES:${PN}-doc += "${docdir}/${BPN}/html ${libdir}/${BPN}/tutorial/ \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500297 ${mandir}/man1/initdb.* ${mandir}/man1/pg_controldata.* \
298 ${mandir}/man1/pg_ctl.* ${mandir}/man1/pg_resetxlog.* \
299 ${mandir}/man1/postgres.* ${mandir}/man1/postmaster.* \
300"
Patrick Williams213cb262021-08-07 19:21:33 -0500301FILES:${PN}-timezone = "${datadir}/${BPN}/timezone \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500302 ${datadir}/${BPN}/timezonesets \
303"
Patrick Williams213cb262021-08-07 19:21:33 -0500304RDEPENDS:${PN} += "${PN}-timezone"
305FILES:${PN}-server-dev = "${includedir}/${BPN}/server \
Brad Bishop15ae2502019-06-18 21:44:24 -0400306 ${libdir}/${BPN}/pgxs \
307"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500308
Patrick Williams213cb262021-08-07 19:21:33 -0500309FILES:libecpg = "${libdir}/libecpg*${SOLIBS}"
310FILES:libecpg-dev = "${libdir}/libecpg*${SOLIBSDEV} \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500311 ${libdir}/libpgtypes*${SOLIBSDEV} \
312 ${includedir}/ecpg*.h ${includedir}/${BPN}/ecpg*.h \
313 ${includedir}/pgtypes*.h ${includedir}/${BPN}/informix \
314 ${includedir}/sql3types.h ${includedir}/sqlca.h \
315"
Patrick Williams213cb262021-08-07 19:21:33 -0500316FILES:libecpg-doc = "${mandir}/man1/ecpg.*"
317FILES:libecpg-staticdev = "${libdir}/libecpg*.a"
318SECTION:libecpg-staticdev = "devel"
319RDEPENDS:libecpg-staticdev = "libecpg-dev (= ${EXTENDPKGV})"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500320
Patrick Williams213cb262021-08-07 19:21:33 -0500321FILES:libpq = "${libdir}/libpq*${SOLIBS}"
322FILES:libpq-dev = "${libdir}/libpq*${SOLIBSDEV} \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500323 ${includedir} \
324"
Patrick Williams213cb262021-08-07 19:21:33 -0500325FILES:libpq-staticdev = "${libdir}/libpq*.a ${libdir}/libpgport.a"
326SECTION:libpq-staticdev = "devel"
327RDEPENDS:libpq-staticdev = "libpq-dev (= ${EXTENDPKGV})"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500328
Patrick Williams213cb262021-08-07 19:21:33 -0500329FILES:libecpg-compat = "${libdir}/libecpg_compat*${SOLIBS}"
330FILES:libecpg-compat-dev = "${libdir}/libecpg_compat*${SOLIBS}"
331FILES:libpgtypes = "${libdir}/libpgtypes*${SOLIBS}"
332FILES:libpgtypes-staticdev = "${libdir}/libpgtypes*.a"
333FILES:libpgtypes-dev = "${libdir}/libpgtypes*${SOLIBS} ${includedir}/pgtypes*.h"
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500334
Patrick Williams213cb262021-08-07 19:21:33 -0500335FILES:${PN}-contrib = " ${bindir}/oid2name ${bindir}/pg_standby \
Andrew Geisslerd221e032020-07-10 16:13:21 -0500336 ${bindir}/pgbench \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500337 ${S}/contrib/spi/*.example \
338 ${libdir}/${BPN}/_int.so ${libdir}/${BPN}/adminpack.so \
339 ${libdir}/${BPN}/autoinc.so ${libdir}/${BPN}/auto_explain.so \
340 ${libdir}/${BPN}/auth_delay.so ${libdir}/${BPN}/btree_gin.so \
341 ${libdir}/${BPN}/btree_gist.so ${libdir}/${BPN}/.so \
342 ${libdir}/${BPN}/chkpass.so ${libdir}/${BPN}/citext.so \
343 ${libdir}/${BPN}/cube.so ${libdir}/${BPN}/dblink.so \
344 ${libdir}/${BPN}/dict_int.so ${libdir}/${BPN}/dict_xsyn.so \
345 ${libdir}/${BPN}/dummy_seclabel.so ${libdir}/${BPN}/earthdistance.so \
346 ${libdir}/${BPN}/file_fdw.so ${libdir}/${BPN}/fuzzystrmatch.so \
347 ${libdir}/${BPN}/hstore.so ${libdir}/${BPN}/insert_username.so \
348 ${libdir}/${BPN}/isn.so ${libdir}/${BPN}/lo.so \
349 ${libdir}/${BPN}/ltree.so ${libdir}/${BPN}/moddatetime.so \
350 ${libdir}/${BPN}/pageinspect.so ${libdir}/${BPN}/pg_buffercache.so \
351 ${libdir}/${BPN}/pg_freespacemap.so ${libdir}/${BPN}/pg_trgm.so \
352 ${libdir}/${BPN}/pgcrypto.so ${libdir}/${BPN}/pgrowlocks.so \
353 ${libdir}/${BPN}/pgstattuple.so ${libdir}/${BPN}/pg_stat_statements.so \
354 ${libdir}/${BPN}/refint.so ${libdir}/${BPN}/seg.so \
355 ${libdir}/${BPN}/sslinfo.so \
356 ${libdir}/${BPN}/tablefunc.so \
357 ${libdir}/${BPN}/test_parser.so ${libdir}/${BPN}/timetravel.so \
Andrew Geisslerd688a012020-09-18 13:36:00 -0500358 ${libdir}/${BPN}/uuid-ossp.so \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500359 ${libdir}/${BPN}/pgxml.so ${libdir}/${BPN}/passwordcheck.so \
360 ${libdir}/${BPN}/pg_upgrade_support.so ${libdir}/${BPN}/.so \
361 ${libdir}/${BPN}/unaccent.so \
362"
Patrick Williams213cb262021-08-07 19:21:33 -0500363DESCRIPTION:${PN}-contrib = "The postgresql-contrib package contains \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500364 contributed packages that are included in the PostgreSQL distribution."
365
Patrick Williams213cb262021-08-07 19:21:33 -0500366FILES:${PN}-pltcl = "${libdir}/${BPN}/pltcl.so ${bindir}/pltcl_delmod \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500367 ${binddir}/pltcl_listmod ${bindir}/pltcl_loadmod \
368 ${datadir}/${BPN}/unknown.pltcl"
Patrick Williams213cb262021-08-07 19:21:33 -0500369SUMMARY:${PN}-pltcl = "The Tcl procedural language for PostgreSQL"
370DESCRIPTION:${PN}-pltcl = "PostgreSQL is an advanced Object-Relational \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500371 database management system. The postgresql-pltcl package contains the PL/Tcl \
372 procedural language for the backend."
373
Patrick Williams213cb262021-08-07 19:21:33 -0500374FILES:${PN}-plperl = "${libdir}/${BPN}/plperl.so"
375SUMMARY:${PN}-plperl = "The Perl procedural language for PostgreSQL"
376DESCRIPTION:${PN}-plperl = "PostgreSQL is an advanced Object-Relational \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500377 database management system. The postgresql-plperl package contains the \
378 PL/Perl procedural language for the backend."
379
380# In version 8, it will be plpython.so
381# In version 9, it might be plpython{2,3}.so depending on python2 or 3
Patrick Williams213cb262021-08-07 19:21:33 -0500382FILES:${PN}-plpython = "${libdir}/${BPN}/plpython*.so"
383SUMMARY:${PN}-plpython = "The Python procedural language for PostgreSQL"
384DESCRIPTION:${PN}-plpython = "PostgreSQL is an advanced Object-Relational \
Patrick Williamsb48b7b42016-08-17 15:04:38 -0500385 database management system. The postgresql-plpython package contains \
386 the PL/Python procedural language for the backend."