mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
50fb87c4dc
Asymptote with enabled hardware acceleration produces incorrect rendered figures in 3D. It is proven that asy has problems with the xf86-video-intel driver. To successfully process 3D figures or examples, it is necessary to always use software rendering. % env LIBGL_ALWAYS_SOFTWARE=1 asy sample.asy PR: 229043 Submitted by: cpm Approved by: nivit (maintainer timeout, 2 weeks)
90 lines
2.5 KiB
Makefile
90 lines
2.5 KiB
Makefile
# Created by: Nicola Vitale <nivit@email.it>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= asymptote
|
|
PORTVERSION= 2.44
|
|
PORTREVISION= 2
|
|
CATEGORIES= math
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}.src
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Powerful script-based vector graphics language
|
|
|
|
LICENSE= GPLv3 LGPL3
|
|
LICENSE_COMB= dual
|
|
|
|
ONLY_FOR_ARCHS= amd64 i386
|
|
|
|
LIB_DEPENDS= libsigsegv.so:devel/libsigsegv
|
|
RUN_DEPENDS= animate:graphics/ImageMagick \
|
|
gv:print/gv \
|
|
${PYTHON_PKGNAMEPREFIX}pillow>0:graphics/py-pillow@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter@${PY_FLAVOR}
|
|
|
|
USES= compiler:c++14-lang gettext-runtime ghostscript gmake ncurses perl5 python \
|
|
shebangfix tar:tgz
|
|
SHEBANG_FILES= GUI/*.py
|
|
USE_GL= gl glu glut
|
|
USE_PERL5= build
|
|
USE_TEX= dvipsk formats
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAKE_ENV= ASYMPTOTE_HOME=${WRKDIR} HOME=${WRKDIR}
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
ALL_TARGET= asy asy-keywords.el
|
|
INSTALL_TARGET= install-asy
|
|
|
|
SUB_FILES= pkg-message
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
OPTIONS_DEFAULT= FFTW GSL MANPAGES READLINE
|
|
OPTIONS_DEFINE= BDWGC DOCS EXAMPLES FFTW GSL MANPAGES OFFSCREEN READLINE
|
|
|
|
BDWGC_LIB_DEPENDS= libgc-threaded.so:devel/boehm-gc-threaded
|
|
BDWGC_DESC= Enable Boehm-Demers-Weiser garbage collector
|
|
BDWGC_CONFIGURE_ENABLE= gc=${LOCALBASE}
|
|
|
|
DOCS_ALL_TARGET= html
|
|
DOCS_BUILD_DEPENDS= texi2dvi:print/texinfo
|
|
DOCS_CONFIGURE_WITH= docdir=${DOCSDIR}
|
|
DOCS_INSTALL_TARGET= install-html
|
|
|
|
FFTW_CONFIGURE_ENABLE= fftw
|
|
FFTW_DESC= Use FFTW to compute the Discrete Fourier Transform
|
|
FFTW_LIB_DEPENDS= libfftw3.so:math/fftw3
|
|
|
|
GSL_CONFIGURE_ENABLE= gsl
|
|
GSL_DESC= Enable GNU Scientific library
|
|
GSL_LIB_DEPENDS= libgsl.so:math/gsl
|
|
|
|
MANPAGES_ALL_TARGET= man
|
|
MANPAGES_BUILD_DEPENDS= texi2dvi:print/texinfo
|
|
MANPAGES_INFO= asy-faq
|
|
MANPAGE_INSTALL_TARGET= install-man
|
|
|
|
OFFSCREEN_CONFIGURE_ENABLE= offscreen
|
|
OFFSCREEN_DESC= Enable offscreen rendering using OSMesa library
|
|
OFFSCREEN_LIB_DEPENDS= libOSMesa.so:graphics/libosmesa
|
|
|
|
READLINE_CONFIGURE_ENABLE= readline
|
|
READLINE_USES= readline:port
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's/-lgc/-lgc-threaded/' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} 's,/usr/lib/libgs.so,${LOCALBASE}/lib/libgs.so,' \
|
|
${WRKSRC}/settings.cc
|
|
@${REINPLACE_CMD} 's,makeinfo,${LOCALBASE}/bin/makeinfo,' \
|
|
${WRKSRC}/doc/png/Makefile.in
|
|
|
|
# Fix the python interpreter in the generated file share/asymptote/GUI/xasyVersion.py:
|
|
@${REINPLACE_CMD} 's,/usr/bin/env python,${PYTHON_CMD},' ${WRKSRC}/Makefile.in
|
|
|
|
post-install:
|
|
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/asy
|
|
|
|
.include <bsd.port.mk>
|