mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
35 lines
926 B
Makefile
35 lines
926 B
Makefile
# Created by: John Prather
|
|
|
|
PORTNAME= flam3
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 3.1.1-5
|
|
DISTVERSIONSUFFIX= -g7fb50c8
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= john.c.prather@gmail.com
|
|
COMMENT= Algorithmically generated fractal flames images and animations
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png \
|
|
libxml2.so:textproc/libxml2
|
|
|
|
USES= gmake jpeg libtool localbase pathfix
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= scottdraves
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-shared --disable-static
|
|
INSTALL_TARGET= install-strip
|
|
USE_LDCONFIG= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|^libflam3_la_SOURCES = .*|& sincos.c| ; s| isaac.lo$$|& sincos.lo|' \
|
|
${WRKSRC}/Makefile.in # sincos is missing on some systems: bug#218300
|
|
@${REINPLACE_CMD} -e 's| -g -O3||' ${WRKSRC}/Makefile.in # https://github.com/scottdraves/flam3/issues/25
|
|
|
|
pre-build:
|
|
@${CP} ${FILESDIR}/sincos.c ${WRKSRC}
|
|
|
|
.include <bsd.port.mk>
|