postgresql: rebuild against perl-5.16.
This commit is contained in:
parent
10bd0dc7ef
commit
f0115a0052
|
@ -1,13 +1,12 @@
|
||||||
# Template file for 'postgresql-libs-devel'.
|
# Template file for 'postgresql-libs-devel'.
|
||||||
#
|
#
|
||||||
depends="postgresql-libs"
|
depends="postgresql-libs>=$version"
|
||||||
short_desc="PostgreSQL shared libraries (development files)"
|
short_desc="PostgreSQL shared libraries (development files)"
|
||||||
long_desc="${long_desc}
|
long_desc="${long_desc}
|
||||||
|
|
||||||
This package provides the development files required to build any
|
This package provides the development files required to build any
|
||||||
PostgreSQL application."
|
PostgreSQL application."
|
||||||
|
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
for f in pg_config ecpg; do
|
for f in pg_config ecpg; do
|
||||||
vmove usr/bin/${f} usr/bin
|
vmove usr/bin/${f} usr/bin
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'postgresql-plperl'.
|
# Template file for 'postgresql-plperl'.
|
||||||
#
|
#
|
||||||
depends="postgresql"
|
depends="perl>=5.16 postgresql>=$version"
|
||||||
short_desc="PL/Perl procedural language for PostgreSQL"
|
short_desc="PL/Perl procedural language for PostgreSQL"
|
||||||
long_desc="${long_desc}
|
long_desc="${long_desc}
|
||||||
|
|
||||||
|
@ -8,7 +8,6 @@ long_desc="${long_desc}
|
||||||
PostgreSQL 8.4 in Perl. You need this package if you have any PostgreSQL 8.4
|
PostgreSQL 8.4 in Perl. You need this package if you have any PostgreSQL 8.4
|
||||||
functions that use the languages plperl or plperlu."
|
functions that use the languages plperl or plperlu."
|
||||||
|
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
vmove "usr/lib/postgresql/plperl*" usr/lib/postgresql
|
vmove "usr/lib/postgresql/plperl*" usr/lib/postgresql
|
||||||
for d in $(find ${SRCPKGDESTDIR}/usr/share/locale \
|
for d in $(find ${SRCPKGDESTDIR}/usr/share/locale \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'postgresql-plpython'.
|
# Template file for 'postgresql-plpython'.
|
||||||
#
|
#
|
||||||
depends="postgresql"
|
depends="postgresql>=$version"
|
||||||
short_desc="PL/Python procedural language for PostgreSQL"
|
short_desc="PL/Python procedural language for PostgreSQL"
|
||||||
long_desc="${long_desc}
|
long_desc="${long_desc}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'postgresql-pltcl'.
|
# Template file for 'postgresql-pltcl'.
|
||||||
#
|
#
|
||||||
depends="postgresql"
|
depends="postgresql>=$version"
|
||||||
short_desc="PL/Tcl procedural language for PostgreSQL"
|
short_desc="PL/Tcl procedural language for PostgreSQL"
|
||||||
long_desc="${long_desc}
|
long_desc="${long_desc}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
# Template file for 'postgresql'
|
# Template file for 'postgresql'
|
||||||
pkgname=postgresql
|
pkgname=postgresql
|
||||||
version=8.4.10
|
version=8.4.10
|
||||||
|
revision=1
|
||||||
distfiles="ftp://ftp.postgresql.org/pub/source/v${version}/${pkgname}-${version}.tar.bz2"
|
distfiles="ftp://ftp.postgresql.org/pub/source/v${version}/${pkgname}-${version}.tar.bz2"
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--with-docdir=/usr/share/doc --with-openssl --with-python
|
configure_args="--with-docdir=/usr/share/doc --with-openssl --with-python
|
||||||
|
@ -8,7 +9,7 @@ configure_args="--with-docdir=/usr/share/doc --with-openssl --with-python
|
||||||
--with-perl --with-tcl --without-ldap --without-gssapi --without-krb5
|
--with-perl --with-tcl --without-ldap --without-gssapi --without-krb5
|
||||||
--without-bonjour --with-libxml --with-libxslt --disable-rpath
|
--without-bonjour --with-libxml --with-libxslt --disable-rpath
|
||||||
--with-system-tzdata=/usr/share/zoneinfo --enable-nls"
|
--with-system-tzdata=/usr/share/zoneinfo --enable-nls"
|
||||||
makedepends="flex readline-devel openssl-devel perl tcl-devel python-devel libxml2-devel libxslt-devel pam-devel"
|
makedepends="flex readline-devel openssl-devel perl>=5.16 tcl-devel python-devel libxml2-devel libxslt-devel pam-devel"
|
||||||
short_desc="Sophisticated open-source Object-Relational DBMS"
|
short_desc="Sophisticated open-source Object-Relational DBMS"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
homepage="http://www.postgresql.org"
|
homepage="http://www.postgresql.org"
|
||||||
|
@ -37,7 +38,6 @@ postgres_homedir="/var/lib/${pkgname}"
|
||||||
postgres_shell="/bin/sh"
|
postgres_shell="/bin/sh"
|
||||||
postgres_descr="PostgreSQL database server user"
|
postgres_descr="PostgreSQL database server user"
|
||||||
|
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vinstall ${FILESDIR}/${pkgname}.confd 644 etc/default ${pkgname}
|
vinstall ${FILESDIR}/${pkgname}.confd 644 etc/default ${pkgname}
|
||||||
vinstall ${FILESDIR}/${pkgname}.service 644 lib/systemd/system
|
vinstall ${FILESDIR}/${pkgname}.service 644 lib/systemd/system
|
||||||
|
|
Loading…
Reference in New Issue