mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-20 04:02:27 +00:00
3d63c30103
- Point WWW line to a working page in the port description, reformat it - Unmute installation command while I'm here PR 199424 Submitted by: maintainer
30 lines
668 B
Makefile
30 lines
668 B
Makefile
# Created by: Alexander Pyhalov <alp@sfedu.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pg_reorg
|
|
PORTVERSION= 1.1.11
|
|
CATEGORIES= databases
|
|
MASTER_SITES= http://pgfoundry.org/frs/download.php/3821/ \
|
|
http://BSDforge.com/projects/source/databases/pg_reorg/
|
|
|
|
MAINTAINER= portmaster@BSDforge.com
|
|
COMMENT= PostgreSQL utility to reorganize tables
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
|
|
MAKE_ENV= USE_PGXS=0
|
|
USES= gmake pgsql uidfix
|
|
WANT_PGSQL_VER= 91+
|
|
WANT_PGSQL= server
|
|
INSTALL_TARGET= install-strip
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|