mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
02cc50a989
Upstream changes from the prior version of the port include: - New fractal types including the Spidron hornflake, Sierpinski, Koch and many others from the fractint formula database. - New tutorial movies, new examples. - Improved fonts for large screen sizes. - Improvements to translations, a romanian translation, and many bugfixes. - Build knobs for the port have been trimmed to ease port maintenance. The one remaining knob, "PTHREADS", switches on experimental support for multi-cpu machines. - The port now adopts the system default for CFLAGS and does not hardcode compiler switches for aggressive optimization.
53 lines
1.2 KiB
Makefile
53 lines
1.2 KiB
Makefile
# New ports collection makefile for: XaoS
|
|
# Date created: 24 February 1996
|
|
# Whom: Joseph Koshy <koshy@india.hp.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xaos
|
|
PORTVERSION= 3.2.3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= xaos
|
|
DISTNAME= XaoS-${PORTVERSION}
|
|
|
|
MAINTAINER= jkoshy@freebsd.org
|
|
COMMENT= A real-time fractal browser for X11 and ASCII terminals
|
|
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
|
|
|
|
USE_XLIB= yes
|
|
USE_GETTEXT= yes
|
|
GNU_CONFIGURE= yes
|
|
|
|
OPTIONS= PTHREAD "Enable experimental SMP support" off
|
|
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${PREFIX}/lib -L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS= --with-aa-driver=no --with-dga-driver=no \
|
|
--with-ggi-driver=no --with-svga-driver=no \
|
|
--with-included-gettext=yes \
|
|
--with-x --with-png=yes \
|
|
--with-mit-shm=yes
|
|
|
|
MAN6= xaos.6
|
|
INFO= xaos
|
|
|
|
PLIST_SUB+= XAOSDIR="share/XaoS"
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_PTHREAD)
|
|
CONFIGURE_ARGS+= --with-pthread=yes
|
|
CONFIGURE_ENV+= LIBS="${PTHREAD_LIBS}" \
|
|
CFLAGS="${PTHREAD_CFLAGS} ${CFLAGS}"
|
|
.else
|
|
CONFIGURE_ARGS+= --with-pthread=no
|
|
.endif
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${PREFIX}/bin/xaos
|
|
|
|
.include <bsd.port.post.mk>
|