1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-24 04:33:24 +00:00
freebsd-ports/databases/pg_reorg/Makefile
Mark Linimon 078a5d7419 Workaround the following problem on aarch64 by setting LLD_UNSAFE=yes:
cc: error: invalid linker name in argument '-fuse-ld=bfd'

Neither emaste nor I can figure out exactly where the offending stanza is
coming in.  It will take someone with more knowledge of gmake debug flags,
and possibly the src build infrastructure, to figure it out.

While here, pet portlint.

Approved by:	portmgr (tier-2 blanket)
2018-06-24 00:54:27 +00:00

31 lines
684 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
LLD_UNSAFE= yes
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>