pkgsrc/x11/XaoS/Makefile

51 lines
1.5 KiB
Makefile
Raw Normal View History

2021-11-15 23:53:55 +01:00
# $NetBSD: Makefile,v 1.43 2021/11/15 22:54:32 wiz Exp $
x11/XaoS: update to version 4.2.1. Lots of changes, the biggest of which is that it now uses Qt5 as GUI toolkit. 4.2 New Features Palette editor, save/load palettes, storing user palettes in the .xpf file. The option 'User formulas' maintains a history of recently used formulas. Fractal info in the Help menu. Batch rendering. Enabled panning in rotate mode. Unified Open and Open Image option. Save Image option moved to Save as. 4.1 New Features Added option to show Cartesian coordinate grid. Custom palette helps visualizing palette before applying changes through slider selectable values now. PNGs exported using 'Save Image' option can be imported back and users can continue zooming on it. 4.0 What's new in 4.0 The user interface is based on Qt, so XaoS has a modern look and feel. Works on macOS Catalina, which broke older versions. Animation rendering has been fixed. Menu entries are now standardized. TrueType text rendering so fonts look nicer and non-Latin alphabets are supported. Hindi, Icelandic, Russian, Serbian and Swedish translations. Several minor updates for the other languages. The language can be set in the View menu now. Lots of bug fixes. Zooming is possible also with the mouse wheel. Mouse cursor has been changed to cross. Iteration number N can be used in user formulas. Lots of source code cleanup and refactoring. It may not be obvious to end users but this will allow us to make better features and more frequent releases in the future. 3.7 There were quite a few bug fixes at this point since 3.6 was released.
2021-06-26 23:21:32 +02:00
DISTNAME= xaos-4.2.1
2021-11-15 23:53:55 +01:00
PKGREVISION= 2
CATEGORIES= x11
x11/XaoS: update to version 4.2.1. Lots of changes, the biggest of which is that it now uses Qt5 as GUI toolkit. 4.2 New Features Palette editor, save/load palettes, storing user palettes in the .xpf file. The option 'User formulas' maintains a history of recently used formulas. Fractal info in the Help menu. Batch rendering. Enabled panning in rotate mode. Unified Open and Open Image option. Save Image option moved to Save as. 4.1 New Features Added option to show Cartesian coordinate grid. Custom palette helps visualizing palette before applying changes through slider selectable values now. PNGs exported using 'Save Image' option can be imported back and users can continue zooming on it. 4.0 What's new in 4.0 The user interface is based on Qt, so XaoS has a modern look and feel. Works on macOS Catalina, which broke older versions. Animation rendering has been fixed. Menu entries are now standardized. TrueType text rendering so fonts look nicer and non-Latin alphabets are supported. Hindi, Icelandic, Russian, Serbian and Swedish translations. Several minor updates for the other languages. The language can be set in the View menu now. Lots of bug fixes. Zooming is possible also with the mouse wheel. Mouse cursor has been changed to cross. Iteration number N can be used in user formulas. Lots of source code cleanup and refactoring. It may not be obvious to end users but this will allow us to make better features and more frequent releases in the future. 3.7 There were quite a few bug fixes at this point since 3.6 was released.
2021-06-26 23:21:32 +02:00
MASTER_SITES= ${MASTER_SITE_GITHUB:=xaos-project/}
GITHUB_PROJECT= XaoS
GITHUB_TAG= refs/tags/release-${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://matek.hu/xaos/
COMMENT= Zoomable fractal rendering doodad
2011-01-29 15:17:33 +01:00
LICENSE= gnu-gpl-v2
x11/XaoS: update to version 4.2.1. Lots of changes, the biggest of which is that it now uses Qt5 as GUI toolkit. 4.2 New Features Palette editor, save/load palettes, storing user palettes in the .xpf file. The option 'User formulas' maintains a history of recently used formulas. Fractal info in the Help menu. Batch rendering. Enabled panning in rotate mode. Unified Open and Open Image option. Save Image option moved to Save as. 4.1 New Features Added option to show Cartesian coordinate grid. Custom palette helps visualizing palette before applying changes through slider selectable values now. PNGs exported using 'Save Image' option can be imported back and users can continue zooming on it. 4.0 What's new in 4.0 The user interface is based on Qt, so XaoS has a modern look and feel. Works on macOS Catalina, which broke older versions. Animation rendering has been fixed. Menu entries are now standardized. TrueType text rendering so fonts look nicer and non-Latin alphabets are supported. Hindi, Icelandic, Russian, Serbian and Swedish translations. Several minor updates for the other languages. The language can be set in the View menu now. Lots of bug fixes. Zooming is possible also with the mouse wheel. Mouse cursor has been changed to cross. Iteration number N can be used in user formulas. Lots of source code cleanup and refactoring. It may not be obvious to end users but this will allow us to make better features and more frequent releases in the future. 3.7 There were quite a few bug fixes at this point since 3.6 was released.
2021-06-26 23:21:32 +02:00
USE_TOOLS+= gmake
USE_LANGUAGES+= c c++
SUBST_CLASSES+= strip
SUBST_MESSAGE.strip= Filling in missing path to strip
SUBST_STAGE.strip= post-configure
SUBST_FILES.strip= Makefile
SUBST_SED.strip= -e 's,^STRIP .*=.*,STRIP = ${TOOLS_PLATFORM.strip},'
SUBST_CLASSES+= path
SUBST_MESSAGE.path= Fixing path to data files
SUBST_STAGE.path= post-configure
SUBST_FILES.path= src/include/config.h
SUBST_SED.path= -e '/^.define DATAPATH/s,".*","${PREFIX}/share/XaoS",'
WRKSRC= ${WRKDIR}/XaoS-release-${PKGVERSION_NOREV}
INSTALLATION_DIRS+= ${PREFIX}/bin
INSTALLATION_DIRS+= ${PREFIX}/share/XaoS
do-configure:
cd ${WRKSRC} && env ${CONFIGURE_ENV} ${QTDIR}/bin/qmake
# The upstream package has no working install target any more.
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/xaos ${DESTDIR}${PREFIX}/bin/
.for dir in catalogs examples tutorial
cd ${WRKSRC} && pax -wr ${dir} ${DESTDIR}${PREFIX}/share/XaoS/
.endfor
cd ${DESTDIR}${PREFIX}/share/XaoS/examples && \
mv */* . && \
rmdir 0rfelyus Hubicka Langston Malczak ZKovacs ZsKovacs
.include "../../x11/qt5-qtbase/buildlink3.mk"
.include "../../x11/qt5-qttools/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"