2015-07-02 19:45:46 +00:00
|
|
|
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
|
|
|
|
|
|
|
|
|
|
PortSystem 1.0
|
2023-09-16 11:33:24 -04:00
|
|
|
PortGroup deprecated 1.0
|
|
|
|
|
|
|
|
|
|
# Final release was on 2021-02-08
|
|
|
|
|
deprecated.upstream_support no
|
2015-07-02 19:45:46 +00:00
|
|
|
|
|
|
|
|
name postgresql95-doc
|
2016-05-12 14:04:40 +00:00
|
|
|
conflicts postgresql90-doc postgresql91-doc postgresql92-doc \
|
|
|
|
|
postgresql93-doc postgresql94-doc postgresql96-doc
|
2021-02-15 14:21:49 +02:00
|
|
|
version 9.5.25
|
2015-07-02 19:45:46 +00:00
|
|
|
categories databases
|
2023-12-06 01:46:00 +11:00
|
|
|
platforms any
|
|
|
|
|
supported_archs noarch
|
2018-06-07 21:02:19 +03:00
|
|
|
maintainers {jwa @jyrkiwahlstedt}
|
2015-07-02 19:45:46 +00:00
|
|
|
license Permissive
|
2023-12-06 01:46:00 +11:00
|
|
|
description Documentation for the PostgreSQL database version 9.5
|
2015-07-02 19:45:46 +00:00
|
|
|
long_description PostgreSQL is Object-Relational Database Management System. \
|
|
|
|
|
It supports almost all SQL constructs, including transactions, \
|
|
|
|
|
subselects, and user-defined types and functions. Write-ahead \
|
|
|
|
|
logging means increased performance while retaining data \
|
|
|
|
|
integrity. This is the documentation.
|
|
|
|
|
|
2017-12-30 00:43:52 -08:00
|
|
|
homepage https://www.postgresql.org/
|
2015-07-02 19:45:46 +00:00
|
|
|
master_sites postgresql:source/v${version}
|
|
|
|
|
distname postgresql-${version}
|
|
|
|
|
set rname postgresql95
|
|
|
|
|
|
2021-02-15 14:21:49 +02:00
|
|
|
checksums rmd160 29bc5f749edd9b3f45d133f970a593dd610b72fb \
|
|
|
|
|
sha256 7628c55eb23768a2c799c018988d8f2ab48ee3d80f5e11259938f7a935f0d603 \
|
|
|
|
|
size 17923796
|
2015-07-02 19:45:46 +00:00
|
|
|
|
|
|
|
|
use_bzip2 yes
|
|
|
|
|
dist_subdir ${rname}
|
|
|
|
|
|
|
|
|
|
set libdir ${prefix}/lib/${rname}
|
|
|
|
|
configure.args --mandir=${prefix}/share/man \
|
|
|
|
|
--without-openssl \
|
|
|
|
|
--without-readline \
|
|
|
|
|
--without-zlib
|
|
|
|
|
|
|
|
|
|
build.dir ${worksrcpath}/doc
|
|
|
|
|
build.type gnu
|
|
|
|
|
build.target
|
|
|
|
|
|
|
|
|
|
destroot.dir ${build.dir}
|
|
|
|
|
|
|
|
|
|
post-destroot {
|
|
|
|
|
file rename ${destroot}${prefix}/share/doc/postgresql \
|
|
|
|
|
${destroot}${prefix}/share/doc/${rname}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
livecheck.type none
|