freebsd-ports/misc/pointless/Makefile
Erwin Lansing 657019cc2a This release contains a large number of fixes (including fixes for
a few crashbugs and for serious problems with fullscreen support).
A number of new features has been added as well: tables, scaling of
pll-embedded content (like LaTeX or Metapost), pll-to-tgz packing etc.
It should also be mentioned that pointless no longer uses python
embedded
but has become a plain python extension. Finally pointless now uses far
less memory and cpu cycles.

PR:		62012
Submitted by:	maintainer
2004-01-30 15:59:20 +00:00

48 lines
1.3 KiB
Makefile

# New ports collection makefile for: pointless
# Date created: 23 june 2003
# Whom: Christian Laursen <xi@borderworlds.dk>
#
# $FreeBSD$
#
PORTNAME= pointless
PORTVERSION= 0.5
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= xi@borderworlds.dk
COMMENT= Pointless is a presentation tool primarily targeted at the un*x world
.if defined(WITH_GHOSTSCRIPT_AFPL) && ${WITH_GHOSTSCRIPT_AFPL} == yes
GSPORT?= print/ghostscript-afpl
.else
GSPORT?= print/ghostscript-gnu
.endif
BUILD_DEPENDS= ${LOCALBASE}/bin/gnuplot:${PORTSDIR}/math/gnuplot \
${LOCALBASE}/bin/gs:${PORTSDIR}/${GSPORT} \
${LOCALBASE}/bin/a2ps:${PORTSDIR}/print/a2ps-letter \
${LOCALBASE}/bin/mpost:${PORTSDIR}/print/teTeX
RUN_DEPENDS= ${BUILD_DEPENDS}
USE_GL= yes
USE_PYTHON= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --prefix=${PREFIX}
CONFIGURE_ENV+= CPPFLAGS=-I${LOCALBASE}/include LDFLAGS=-L${LOCALBASE}/lib/${PYTHON_VERSION}/config/
MAN1= pointless.1
INSTALL_TARGET= install install-modules
pre-fetch:
.if !defined(WITH_GHOSTSCRIPT_AFPL) || ${WITH_GHOSTSCRIPT_AFPL} != yes
@${ECHO} ""
@${ECHO} " Define WITH_GHOSTSCRIPT_AFPL=yes to use"
@${ECHO} " AFPL Postscript interpreter instead of GNU one"
@${ECHO} ""
.endif
.include <bsd.port.mk>