diff options
Diffstat (limited to 'databases/postgresql-docs')
-rw-r--r-- | databases/postgresql-docs/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/databases/postgresql-docs/Makefile b/databases/postgresql-docs/Makefile index e3760513cfcc..38d0fc305c39 100644 --- a/databases/postgresql-docs/Makefile +++ b/databases/postgresql-docs/Makefile @@ -14,7 +14,7 @@ COMMENT= The PostgreSQL documentation set MASTERDIR= ${.CURDIR}/../postgresql${PGSQL_VER}-server -DEFAULT_PGSQL_VER?=74 +DEFAULT_PGSQL_VER?=81 # can't include <bsd.port.pre.mk> in a slave port # so set these instead: @@ -25,12 +25,11 @@ CONFLICTS= postgresql-docs # Setting/finding PostgreSQL version we want. .if exists(${LOCALBASE}/bin/pg_config) -PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\)\..*/\1\2/p' +PGSQL_VER!= ${LOCALBASE}/bin/pg_config --version | ${SED} -n 's/PostgreSQL[^0-9]*\([0-9][0-9]*\)\.\([0-9][0-9]*\).*/\1\2/p' .else PGSQL_VER= ${DEFAULT_PGSQL_VER} .endif -DISTFILES= postgresql-docs-${PORTVERSION}${EXTRACT_SUFX} NO_BUILD= YES SLAVE_ONLY= YES PATCHDIR= mustnotexist |