1997-02-28 11:52:53 +01:00
|
|
|
# New ports collection makefile for: XaoS
|
|
|
|
# Date created: 24 February 1996
|
|
|
|
# Whom: Joseph Koshy <koshy@india.hp.com>
|
|
|
|
#
|
1999-08-25 08:16:32 +02:00
|
|
|
# $FreeBSD$
|
1997-02-28 11:52:53 +01:00
|
|
|
#
|
|
|
|
|
2000-04-14 12:48:02 +02:00
|
|
|
PORTNAME= xaos
|
2008-06-06 00:30:51 +02:00
|
|
|
PORTVERSION= 3.4
|
2008-06-06 16:17:21 +02:00
|
|
|
PORTREVISION= 1
|
2008-06-06 00:30:51 +02:00
|
|
|
CATEGORIES= graphics math
|
2009-08-22 02:23:13 +02:00
|
|
|
MASTER_SITES= SF/${PORTNAME}/XaoS/${PORTVERSION}
|
2000-04-14 12:48:02 +02:00
|
|
|
DISTNAME= XaoS-${PORTVERSION}
|
1997-02-28 11:52:53 +01:00
|
|
|
|
2009-02-21 12:31:28 +01:00
|
|
|
MAINTAINER= makc@FreeBSD.org
|
2003-03-07 07:14:21 +01:00
|
|
|
COMMENT= A real-time fractal browser for X11 and ASCII terminals
|
1997-02-28 11:52:53 +01:00
|
|
|
|
2001-09-11 04:22:51 +02:00
|
|
|
LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png
|
1998-07-06 09:23:46 +02:00
|
|
|
|
2008-06-06 00:30:51 +02:00
|
|
|
USE_XORG= x11 xau xdmcp xext
|
1997-02-28 11:52:53 +01:00
|
|
|
GNU_CONFIGURE= yes
|
2008-04-29 21:06:44 +02:00
|
|
|
USE_GMAKE= yes
|
2008-08-20 02:57:32 +02:00
|
|
|
USE_AUTOTOOLS= autoconf:262
|
1997-02-28 11:52:53 +01:00
|
|
|
|
2008-06-06 00:30:51 +02:00
|
|
|
OPTIONS= PTHREAD "Enable SMP support (experimental)" off \
|
|
|
|
NLS "Native Language Support" on
|
2005-06-23 08:12:48 +02:00
|
|
|
|
2007-07-05 08:22:19 +02:00
|
|
|
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 \
|
2008-04-29 21:06:44 +02:00
|
|
|
--with-sffe=no
|
2005-06-23 08:12:48 +02:00
|
|
|
|
1997-03-02 10:49:00 +01:00
|
|
|
MAN6= xaos.6
|
2005-06-23 08:12:48 +02:00
|
|
|
INFO= xaos
|
|
|
|
|
|
|
|
PLIST_SUB+= XAOSDIR="share/XaoS"
|
2008-06-06 00:30:51 +02:00
|
|
|
|
2008-04-29 21:06:44 +02:00
|
|
|
DESKTOP_ENTRIES="XaoS" "Fractal zoomer" "" "xaos" "" false
|
1997-03-02 10:49:00 +01:00
|
|
|
|
2004-02-25 11:00:49 +01:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2005-06-23 08:12:48 +02:00
|
|
|
.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
|
|
|
|
|
2008-04-29 21:06:44 +02:00
|
|
|
.if !defined(WITHOUT_NLS)
|
|
|
|
USE_GETTEXT= yes
|
|
|
|
PLIST_SUB+= NLS=""
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
|
|
PLIST_SUB+= NLS="@comment "
|
|
|
|
.endif
|
1997-02-28 11:52:53 +01:00
|
|
|
|
2004-02-25 11:00:49 +01:00
|
|
|
.include <bsd.port.post.mk>
|