blob: 41bfb1091155aef088f341e982d252c1d1638dae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# New ports collection makefile for: PostgreSQL docs
# Date created: August 26, 2002
# Whom: Palle Girgensohn <girgen@partitur.se>
#
# $FreeBSD$
#
PORTNAME= postgresql
PKGNAMESUFFIX= -docs
MAINTAINER= girgen@partitur.se
POSTGRESQL_SUBPORT= YES
.include <${.CURDIR}/../postgresql7/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>
|