diff options
author | miwi <miwi@FreeBSD.org> | 2008-04-30 03:06:44 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-04-30 03:06:44 +0800 |
commit | ff6e0905aa9631ba6e5e272049dab0d24802628f (patch) | |
tree | 9d19c6d438557b347e2bb22737babf7161cfc1ff /graphics/xaos/Makefile | |
parent | 0eef90fe29f6ba69a5fef617a329dde9984c34bc (diff) | |
download | freebsd-ports-gnome-ff6e0905aa9631ba6e5e272049dab0d24802628f.tar.gz freebsd-ports-gnome-ff6e0905aa9631ba6e5e272049dab0d24802628f.tar.zst freebsd-ports-gnome-ff6e0905aa9631ba6e5e272049dab0d24802628f.zip |
- Update to 3.3
PR: 122892
Submitted by: Max Brazhnikov <makc@issp.ac.ru> (maintainer)
Diffstat (limited to 'graphics/xaos/Makefile')
-rw-r--r-- | graphics/xaos/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/graphics/xaos/Makefile b/graphics/xaos/Makefile index 79f64c36e40a..88426380839b 100644 --- a/graphics/xaos/Makefile +++ b/graphics/xaos/Makefile @@ -6,10 +6,9 @@ # PORTNAME= xaos -PORTVERSION= 3.2.3 -PORTREVISION= 3 +PORTVERSION= 3.3 CATEGORIES= graphics -MASTER_SITES= SF/xaos +MASTER_SITES= SF DISTNAME= XaoS-${PORTVERSION} MAINTAINER= makc@issp.ac.ru @@ -17,9 +16,11 @@ COMMENT= A real-time fractal browser for X11 and ASCII terminals LIB_DEPENDS= png.5:${PORTSDIR}/graphics/png -USE_XORG= x11 xt +USE_XORG= x11 xt x11 xau xdmcp xext USE_GETTEXT= yes GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_AUTOTOOLS= autoconf:261 OPTIONS= PTHREAD "Enable experimental SMP support" off @@ -29,12 +30,14 @@ 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 + --with-mit-shm=yes \ + --with-sffe=no MAN6= xaos.6 INFO= xaos PLIST_SUB+= XAOSDIR="share/XaoS" +DESKTOP_ENTRIES="XaoS" "Fractal zoomer" "" "xaos" "" false .include <bsd.port.pre.mk> @@ -46,7 +49,12 @@ CONFIGURE_ENV+= LIBS="${PTHREAD_LIBS}" \ CONFIGURE_ARGS+= --with-pthread=no .endif -post-install: - ${STRIP_CMD} ${PREFIX}/bin/xaos +.if !defined(WITHOUT_NLS) +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+=--disable-nls +PLIST_SUB+= NLS="@comment " +.endif .include <bsd.port.post.mk> |