diff options
author | hrs <hrs@FreeBSD.org> | 2011-06-27 10:41:53 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2011-06-27 10:41:53 +0800 |
commit | 650dd459441e9e5de330c68654ec6533e3fb42ac (patch) | |
tree | 7bf84a2862db94becf8a7b9e388e7724f36c5968 /math | |
parent | 5a1f10e7e2636d065e94fe6a607dc183eecdf194 (diff) | |
download | freebsd-ports-gnome-650dd459441e9e5de330c68654ec6533e3fb42ac.tar.gz freebsd-ports-gnome-650dd459441e9e5de330c68654ec6533e3fb42ac.tar.zst freebsd-ports-gnome-650dd459441e9e5de330c68654ec6533e3fb42ac.zip |
Fix the installation path of tex/context/third/asymptote/colo-asy.tex.
Spotted by: pav, ohauer
PR: ports/158325
Diffstat (limited to 'math')
-rw-r--r-- | math/asymptote/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/math/asymptote/Makefile b/math/asymptote/Makefile index 45c8e886e5cd..bdb26481ab72 100644 --- a/math/asymptote/Makefile +++ b/math/asymptote/Makefile @@ -7,7 +7,7 @@ PORTNAME= asymptote PORTVERSION= 2.04 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTVERSION} \ SF/${PORTNAME}/${PORTNAME}/old/${PORTVERSION} @@ -48,8 +48,12 @@ MAKE_JOBS_UNSAFE= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} GNU_CONFIGURE= yes -CONFIGURE_ARGS+= --with-latex=${LOCALBASE}/share/texmf/tex/latex -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include $${CPPFLAGS}" LFLAGS="-L${LOCALBASE}/lib $${LFLAGS}" CFLAGS="-I${LOCALBASE}/include $${CFLAGS}" LDFLAGS="-L${LOCALBASE}/lib $${LDFLAGS}" +CONFIGURE_ARGS+=--with-latex=${LOCALBASE}/share/texmf/tex/latex \ + --with-context=${LOCALBASE}/share/texmf/tex/context/third +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include $${CPPFLAGS}" \ + LFLAGS="-L${LOCALBASE}/lib $${LFLAGS}" \ + CFLAGS="-I${LOCALBASE}/include $${CFLAGS}" \ + LDFLAGS="-L${LOCALBASE}/lib $${LDFLAGS}" MAKE_ENV+= ${CONFIGURE_ENV} MKTEXLSR= ${LOCALBASE}/bin/mktexlsr |