1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00
freebsd-ports/graphics/quat/Makefile
Rene Ladan 4485bd8221 all: drop support for expired FreeBSD 14.0
Simplify expressions for FreeBSD 13.X

Reviewed by:	many

Differential Revision:	https://reviews.freebsd.org/D46601
2024-10-01 20:56:20 +02:00

49 lines
1.2 KiB
Makefile

PORTNAME= quat
PORTVERSION= 1.20
CATEGORIES= graphics
MASTER_SITES= https://www.physcip.uni-stuttgart.de/pages/~phy11733/download/
MAINTAINER= bofh@FreeBSD.org
COMMENT= Three-dimensional fractal creator (command line only)
WWW= https://www.physcip.uni-stuttgart.de/pages/~phy11733/index_e.html
LICENSE= GPLv2+
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-gui \
--datadir=${PREFIX}/share/doc
PLIST_FILES= bin/quat-txt
PORTDOCS= *
OPTIONS_DEFINE= OPTIMIZED_CFLAGS DOCS
OPTIMIZED_CFLAGS_CFLAGS= -O3 -ffast-math
.include <bsd.port.options.mk>
.if ${OPSYS} == FreeBSD
CFLAGS+= -Wno-error=int-conversion
.endif
post-patch:
@${REINPLACE_CMD} -E -e \
's,-(march=pentium|O3|ffast-math),,g' \
${WRKSRC}/configure
@${REINPLACE_CMD} -E -e \
's|-I\.[[:space:]]+-I\$$\(srcdir\)[[:space:]]+||' \
${WRKSRC}/kernel/Makefile.in
# disable data file installation since distfile does not do
# The Right Thing(TM)
@${REINPLACE_CMD} -E -e \
's|^(install-data-am:).*$$|\1| ; \
s|^(SUBDIRS.*)doc|\1|' \
${WRKSRC}/Makefile.in
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/doc && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} \
${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET})
.include <bsd.port.mk>