diff options
author | wulf <wulf@pkgsrc.org> | 2006-01-14 10:48:13 +0000 |
---|---|---|
committer | wulf <wulf@pkgsrc.org> | 2006-01-14 10:48:13 +0000 |
commit | 7d7a851a73bd96e807803e1c590c236ec054f7ab (patch) | |
tree | 7c6cc8d6e4dfce9ea62c637c6f319aef5743d5e6 /devel/boaconstructor/Makefile | |
parent | 8e9135ecdc46167c25d0091b8553ee7e54a39fe4 (diff) | |
download | pkgsrc-7d7a851a73bd96e807803e1c590c236ec054f7ab.tar.gz |
Updated boaconstructor to 0.4.4: Changes since version 0.2.3 include
* Many bugfixes
* Migration to 2.5
* IDE Framework registration api in Plugins.py.
* Improved Code Completion and Call Tips.
* wxMAC compatibility improvements thanks to Kevin Walzer.
* Simple regex editor/matcher window now available under Tools.
* PyPlot plug-in
* New wxPython/Python docs bundle
* Tutorial improvements
* Python Resource modules now provides an alternative way to use images
* EOL handling in source files have been completely redone.
* Converted the FormatParagraph IDLE extension to be a Boa plug-in.
* Zip Transport now allows write/clipboard operations.
* Support for the unicode encoding declaration (PEP 263)
* Support for wx.GridBagSizer
* Support for editing/browsing tar.gz files.
* Support for Help Book. Boa can now manage .hhp, .hhc and .hhk files.
* Support for wxWizards
* Support for the masked edit family of controls:
* Support for using Sizers in the Designer.
* Added property editors for BackgroundStyle and WindowVariant
* Added new wx.DatePickerCtrl to DateTimeCompanions.py, thanks to Oleg Deribas.
* Added preference setting to toggle specialiased Zope debugging
* Added wxTreeListCtrl and wxListView to the Palette.
* Added BicycleRepairMan (Python Refactoring) support.
* Added new Tools menu to the main menu.
Diffstat (limited to 'devel/boaconstructor/Makefile')
-rw-r--r-- | devel/boaconstructor/Makefile | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/devel/boaconstructor/Makefile b/devel/boaconstructor/Makefile index c1d7dd98fd8..cb1459ba48c 100644 --- a/devel/boaconstructor/Makefile +++ b/devel/boaconstructor/Makefile @@ -1,9 +1,8 @@ -# $NetBSD: Makefile,v 1.6 2005/06/16 06:57:45 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2006/01/14 10:48:13 wulf Exp $ # -DISTNAME= boa-constructor-0.2.3.src -PKGNAME= boaconstructor-0.2.3 -PKGREVISION= 2 +VERSION= 0.4.4 +DISTNAME= boa-constructor-${VERSION} CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=boa-constructor/} EXTRACT_SUFX= .zip @@ -12,16 +11,19 @@ MAINTAINER= tech-pkg@NetBSD.org HOMEPAGE= http://boa-constructor.sourceforge.net/ COMMENT= Python IDE -WRKSRC= ${WRKDIR}/boa-constructor-0.2.3 EXTRACT_CMD_OPTS.zip= -aqo -PYTHON_VERSIONS_ACCEPTED= 23 +PYTHON_VERSIONS_ACCEPTED= 23 24 + +BOADIR= ${PREFIX}/share/boa-constructor-${VERSION} -BOADIR= ${PREFIX}/share/boa-constructor-0.2.3 SEDSUBST= -e "s|@PYTHONBIN@|${PYTHONBIN}|" SEDSUBST+= -e "s|@PREFIX@|${PREFIX}|" +SEDSUBST+= -e "s|@VERSION@|${VERSION}|" INSTALLATION_DIRS= bin +DEPENDS+= ${PYPKGPREFIX}-expat-[0-9]*:../../textproc/py-expat + do-build: ${SED} ${SEDSUBST} <${FILESDIR}/Boa.sh >${WRKDIR}/Boa |