GLE is a graphics language that produces PostScript, EPS, PDF, PNG,
or JPG ouput from a simple script file.
GLE is a full featured scripting language that includes variables,
subroutines, logic control, looping, a graphing tool, and more
to produce high quality output. It has a full range of facilities
for producing publication-quality graphs, diagrams, posters and slides.
GLE provides LaTeX quality fonts together with a flexible graphics
module, which allows the user to specify any feature of a graph
(down to the line width of the subticks, for example).
WWW: http://www.gle-graphics.org/
PR: ports/105433
Submitted by: Nicola Vitale <nivit at email.it>
2006-11-15 22:20:16 +01:00
|
|
|
# New ports collection makefile for: glx
|
|
|
|
# Date created: 2006-11-10
|
|
|
|
# Whom: Nicola Vitale <nivit@email.it>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= gle-graphics
|
|
|
|
PORTVERSION= 4.0.12
|
2011-05-02 14:44:53 +02:00
|
|
|
PORTREVISION= 6
|
GLE is a graphics language that produces PostScript, EPS, PDF, PNG,
or JPG ouput from a simple script file.
GLE is a full featured scripting language that includes variables,
subroutines, logic control, looping, a graphing tool, and more
to produce high quality output. It has a full range of facilities
for producing publication-quality graphs, diagrams, posters and slides.
GLE provides LaTeX quality fonts together with a flexible graphics
module, which allows the user to specify any feature of a graph
(down to the line width of the subticks, for example).
WWW: http://www.gle-graphics.org/
PR: ports/105433
Submitted by: Nicola Vitale <nivit at email.it>
2006-11-15 22:20:16 +01:00
|
|
|
CATEGORIES= graphics print
|
2009-08-22 02:23:13 +02:00
|
|
|
MASTER_SITES= SF/glx/gle4%20%28Current%20Active%20Version%29/${PORTVERSION}
|
GLE is a graphics language that produces PostScript, EPS, PDF, PNG,
or JPG ouput from a simple script file.
GLE is a full featured scripting language that includes variables,
subroutines, logic control, looping, a graphing tool, and more
to produce high quality output. It has a full range of facilities
for producing publication-quality graphs, diagrams, posters and slides.
GLE provides LaTeX quality fonts together with a flexible graphics
module, which allows the user to specify any feature of a graph
(down to the line width of the subticks, for example).
WWW: http://www.gle-graphics.org/
PR: ports/105433
Submitted by: Nicola Vitale <nivit at email.it>
2006-11-15 22:20:16 +01:00
|
|
|
DISTNAME= GLE-${PORTVERSION}-src
|
|
|
|
|
2006-12-10 02:21:51 +01:00
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
GLE is a graphics language that produces PostScript, EPS, PDF, PNG,
or JPG ouput from a simple script file.
GLE is a full featured scripting language that includes variables,
subroutines, logic control, looping, a graphing tool, and more
to produce high quality output. It has a full range of facilities
for producing publication-quality graphs, diagrams, posters and slides.
GLE provides LaTeX quality fonts together with a flexible graphics
module, which allows the user to specify any feature of a graph
(down to the line width of the subticks, for example).
WWW: http://www.gle-graphics.org/
PR: ports/105433
Submitted by: Nicola Vitale <nivit at email.it>
2006-11-15 22:20:16 +01:00
|
|
|
COMMENT= A graphics language that produces images from script files
|
|
|
|
|
|
|
|
RUN_DEPENDS= gv:${PORTSDIR}/print/gv
|
|
|
|
|
|
|
|
OPTIONS= BITMAP_IMAGES "Support for including bitmap images" On \
|
|
|
|
LATEX_GS "Use LaTeX & GhostScript" On \
|
|
|
|
X_WINDOWS "Use X Windows System" On
|
|
|
|
|
|
|
|
WRKSRC= ${WRKDIR}/gle4
|
|
|
|
|
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
# GUI requires QT 4.1.X
|
|
|
|
CONFIGURE_ARGS+= --with-qt=no
|
|
|
|
|
|
|
|
PLIST_SUB+= PORTVERSION=${PORTVERSION}
|
|
|
|
REINPLACE_FILES= configure
|
|
|
|
|
|
|
|
USE_GMAKE= yes
|
|
|
|
USE_ZIP= yes
|
|
|
|
|
|
|
|
post-patch:
|
|
|
|
cd ${WRKSRC} && ${REINPLACE_CMD} -e 's|%%DATADIR%%|${DATADIR}|g' ${REINPLACE_FILES}
|
|
|
|
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2007-03-21 11:26:02 +01:00
|
|
|
.if !defined(WITHOUT_BITMAP_IMAGES)
|
2010-02-05 12:46:55 +01:00
|
|
|
LIB_DEPENDS+= jpeg.11:${PORTSDIR}/graphics/jpeg \
|
2010-03-28 08:47:48 +02:00
|
|
|
png.6:${PORTSDIR}/graphics/png \
|
GLE is a graphics language that produces PostScript, EPS, PDF, PNG,
or JPG ouput from a simple script file.
GLE is a full featured scripting language that includes variables,
subroutines, logic control, looping, a graphing tool, and more
to produce high quality output. It has a full range of facilities
for producing publication-quality graphs, diagrams, posters and slides.
GLE provides LaTeX quality fonts together with a flexible graphics
module, which allows the user to specify any feature of a graph
(down to the line width of the subticks, for example).
WWW: http://www.gle-graphics.org/
PR: ports/105433
Submitted by: Nicola Vitale <nivit at email.it>
2006-11-15 22:20:16 +01:00
|
|
|
tiffxx.4:${PORTSDIR}/graphics/tiff
|
|
|
|
CONFIGURE_ARGS+= --with-jpeg=${LOCALBASE} --with-tiff=${LOCALBASE} --with-png=${LOCALBASE}
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --with-jpeg=no --with-png=no -with-tiff=no
|
|
|
|
.endif
|
|
|
|
|
2007-03-21 11:26:02 +01:00
|
|
|
.if !defined(WITHOUT_LATEX_GS)
|
|
|
|
USE_GHOSTSCRIPT_RUN= yes
|
|
|
|
RUN_DEPENDS+= latex:${PORTSDIR}/print/teTeX
|
GLE is a graphics language that produces PostScript, EPS, PDF, PNG,
or JPG ouput from a simple script file.
GLE is a full featured scripting language that includes variables,
subroutines, logic control, looping, a graphing tool, and more
to produce high quality output. It has a full range of facilities
for producing publication-quality graphs, diagrams, posters and slides.
GLE provides LaTeX quality fonts together with a flexible graphics
module, which allows the user to specify any feature of a graph
(down to the line width of the subticks, for example).
WWW: http://www.gle-graphics.org/
PR: ports/105433
Submitted by: Nicola Vitale <nivit at email.it>
2006-11-15 22:20:16 +01:00
|
|
|
.endif
|
|
|
|
|
2007-03-21 11:26:02 +01:00
|
|
|
.if !defined(WITHOUT_X_WINDOWS)
|
GLE is a graphics language that produces PostScript, EPS, PDF, PNG,
or JPG ouput from a simple script file.
GLE is a full featured scripting language that includes variables,
subroutines, logic control, looping, a graphing tool, and more
to produce high quality output. It has a full range of facilities
for producing publication-quality graphs, diagrams, posters and slides.
GLE provides LaTeX quality fonts together with a flexible graphics
module, which allows the user to specify any feature of a graph
(down to the line width of the subticks, for example).
WWW: http://www.gle-graphics.org/
PR: ports/105433
Submitted by: Nicola Vitale <nivit at email.it>
2006-11-15 22:20:16 +01:00
|
|
|
CONFIGURE_ARGS+= --with-x
|
2008-03-24 18:02:27 +01:00
|
|
|
USE_XORG= x11
|
GLE is a graphics language that produces PostScript, EPS, PDF, PNG,
or JPG ouput from a simple script file.
GLE is a full featured scripting language that includes variables,
subroutines, logic control, looping, a graphing tool, and more
to produce high quality output. It has a full range of facilities
for producing publication-quality graphs, diagrams, posters and slides.
GLE provides LaTeX quality fonts together with a flexible graphics
module, which allows the user to specify any feature of a graph
(down to the line width of the subticks, for example).
WWW: http://www.gle-graphics.org/
PR: ports/105433
Submitted by: Nicola Vitale <nivit at email.it>
2006-11-15 22:20:16 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|