blob: 183f810216d3c8f75e2a93a1cb3068c43dd343aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
SUMMARY = "ODBC driver for PostgreSQL"
DESCRIPTION = "\
This package provides a driver that allows ODBC-enabled applications to \
access PostgreSQL databases. ODBC is an abstraction layer that allows \
applications written for that layer to access databases in a manner \
that is relatively independent of the particular database management \
system. \
. \
You need to install this package if you want to use an application that \
provides database access through ODBC and you want that application to \
access a PostgreSQL database. This package would need to be installed \
on the same machine as that client application; the PostgreSQL database \
server can be on a different machine and does not need any additional \
software to accept ODBC clients. \
"
SECTION = "libs"
HOMEPAGE = "https://odbc.postgresql.org/"
LICENSE = "LGPL-2.0-only"
LIC_FILES_CHKSUM = "file://license.txt;md5=6db3822fc7512e83087ba798da013692"
SRC_URI = "git://github.com/postgresql-interfaces/psqlodbc.git;protocol=https;branch=main;tag=REL-${PV_WITH_USCORE} \
file://psqlodbc-remove-some-checks-for-cross-compiling.patch \
file://psqlodbc-donot-use-the-hardcode-libdir.patch \
file://psqlodbc-fix-for-ptest-support.patch \
file://add-expected-output-file-for-descrec-test.patch \
file://run-ptest \
"
SRCREV = "251c8e8200c7a030fa46e59429d3fec7a73de4ec"
PV_WITH_USCORE = "${@d.getVar('PV').replace('.', '_')}"
DEPENDS += "postgresql unixodbc"
EXTRA_OECONF = "\
ac_cv_lib_ltdl_lt_dlopen=no \
ac_cv_lib_pq_PQconnectdb=yes \
--with-unixodbc=yes \
--with-libpq=${STAGING_LIBDIR}/.. \
--enable-pthreads \
LIBS='-lpthread' \
"
inherit autotools pkgconfig ptest
do_compile_ptest() {
oe_runmake -C ${B}/test
}
do_install_ptest() {
install -d ${D}${PTEST_PATH}
cp -a --no-preserve=ownership ${B}/test/exe ${S}/test/expected ${D}${PTEST_PATH}
install -m 0755 ${B}/test/reset-db ${D}${PTEST_PATH}
install -m 0755 ${B}/test/runsuite ${D}${PTEST_PATH}
install -m 0755 ${S}/test/odbcini-gen.sh ${D}${PTEST_PATH}
install -m 0755 ${S}/test/sampletables.sql ${D}${PTEST_PATH}
sed -i -e 's|@LIBDIR@|${libdir}|' ${D}${PTEST_PATH}/odbcini-gen.sh
}
FILES:${PN} += "${libdir}"
# The tests need a local PostgreSQL server running
RDEPENDS:${PN}-ptest += "psqlodbc postgresql diffutils"
RDEPENDS:${PN}-ptest:append:libc-glibc = " glibc-utils locale-base-en-us glibc-gconv glibc-charmaps"
|