mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 19:35:28 -04:00
25 lines
631 B
Makefile
25 lines
631 B
Makefile
# New ports collection makefile for: PostgreSQL docs
|
|
# Date created: August 26, 2002
|
|
# Whom: Palle Girgensohn <girgen@pingpong.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= postgresql
|
|
PKGNAMESUFFIX= -docs
|
|
|
|
MAINTAINER= girgen@pingpong.net
|
|
|
|
POSTGRESQL_SUBPORT= YES
|
|
POSTGRESQL_PORT?= databases/postgresql7
|
|
.include <${PORTSDIR}/${POSTGRESQL_PORT}/Makefile>
|
|
DISTFILES= postgresql-docs-${PORTVERSION}${EXTRACT_SUFX}
|
|
.undef GNU_CONFIGURE
|
|
NO_BUILD= YES
|
|
|
|
do-install:
|
|
$(MKDIR) ${PREFIX}/share/doc/postgresql/html; \
|
|
${GZIP_CMD} -dc ${WRKSRC}/doc/postgres.tar.gz | \
|
|
( cd $(PREFIX)/share/doc/postgresql/html && $(TAR) xf - )
|
|
|
|
.include <bsd.port.mk>
|