1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-23 09:10:43 +00:00
freebsd-ports/lang/rexx-regina/Makefile
Mark Linimon bf43557044 For ports that are marked BROKEN on armv6, and also fail to build on
armv7, mark them so.

This is part two of a multipart commit to bring armv7 ports to parity
with armv6.

Approved by:	portmgr (tier-2 blanket)
Obtained from:	lonesome.com -exp run
2017-11-30 06:13:34 +00:00

75 lines
2.2 KiB
Makefile

# Created by: ijliao
# $FreeBSD$
PORTNAME= regina
PORTVERSION= 3.9.1
PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= SF/${PORTNAME}-rexx/${PORTNAME}-rexx/${PORTVERSION}:source \
SF/${PORTNAME}-rexx/${PORTNAME}-documentation/${PORTVERSION}:docs
PKGNAMEPREFIX= rexx-
DISTNAME= Regina-REXX-${PORTVERSION}
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:source
DIST_SUBDIR= ${PORTNAME}
EXTRACT_ONLY= Regina-REXX-${PORTVERSION}.tar.gz
MAINTAINER= bob@eager.cx
COMMENT= Rexx interpreter
LICENSE= LGPL21+
BROKEN_aarch64= Does not build: error: expected expression
BROKEN_armv6= Does not build: error: expected expression
BROKEN_armv7= Does not build: error: expected expression
BROKEN_mips= Does not build: error: expected expression
BROKEN_mips64= Does not build: error: expected expression
BROKEN_powerpc64= Does not build: error: expected expression
BROKEN_sparc64= Does not build: error: expected expression
USES= gmake iconv ncurses
USE_RC_SUBR= rxstack
GNU_CONFIGURE= yes
CONFIGURE_ENV= ac_cv_c_char_unsigned=yes
CONFIGURE_ARGS= --with-addon-dir=${PREFIX}/lib/Regina-REXX/addons
USE_LDCONFIG= yes
MAKE_JOBS_UNSAFE= yes
DATADIR= ${PREFIX}/share/${PKGNAMEPREFIX}${PORTNAME}
DOCSDIR= ${PREFIX}/share/doc/${PKGNAMEPREFIX}${PORTNAME}
EXAMPLESDIR= ${PREFIX}/share/examples/${PKGNAMEPREFIX}${PORTNAME}
CONFLICTS= rexx-imc-[0-0]* oorexx-[0-9]*
OPTIONS_DEFINE= DOCS EXAMPLES
DOCS_DISTFILES= regina.pdf:docs \
regutil.pdf:docs
.include <bsd.port.options.mk>
.if ${ARCH} == i386 || ${ARCH} == powerpc
CONFIGURE_ARGS+= --enable-32bit
.endif
post-extract-DOCS-on:
@${CP} ${DISTDIR}/${DIST_SUBDIR}/regina.pdf ${WRKDIR}
@${CP} ${DISTDIR}/${DIST_SUBDIR}/regutil.pdf ${WRKDIR}
post-patch:
@${REINPLACE_CMD} -e \
'/$${CFLAGS}/s|^|#| ; \
s|"-lpthread"|"-pthread"|' ${WRKSRC}/configure
@${REINPLACE_CMD} -e \
'/^examplesdir/s|=.*|= $$(datadir)/examples/$$(PACKAGE)| ; \
/$$(sysconfdir)/s|^|#|' ${WRKSRC}/Makefile.in
post-stage:
@${LN} -f ${STAGEDIR}/${PREFIX}/man/man1/regina.1.gz \
${STAGEDIR}/${PREFIX}/man/man1/rexx.1.gz
post-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
${INSTALL_MAN} ${WRKDIR}/regina.pdf ${STAGEDIR}${DOCSDIR}
${INSTALL_MAN} ${WRKDIR}/regutil.pdf ${STAGEDIR}${DOCSDIR}
.include <bsd.port.mk>