pkgsrc/lang/squeak/Makefile
asau c14ad36df2 Update to Squeak 4.4
Prompted by Rhialto in private mail.


Squeak 4.4 - Ulam Spiral

Changelog:
* Cleanup and simplification of Morphic text editing
* Add host window support, letting you display things
  in a host window. (Currently only on Windows and Mac.)
* Bugfixes in the Compiler, Parser and Debugger toolchain
* Stub support for the ability to evolve the bytecode set
* Better printing of Floats, hashing of DateAndTimes
* ChangeSorter improvements
* ToolBuilder improvements
* Merged network improvements from Etoys
* Monticello browsing can now group versions by branch,
  making tracking of parallel developments easier
* Decreased coupling between core packages
* IPv6 support (if your VM provides it)
2014-12-15 02:11:06 +00:00

37 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.48 2014/12/15 02:11:06 asau Exp $
#
SQUEAK_VERSION= 4.5
IMAGE_VERSION= 13680
SQUEAK_SOURCES= SqueakV41.sources
DISTNAME= Squeak$(SQUEAK_VERSION)-$(IMAGE_VERSION)
PKGNAME= squeak-$(SQUEAK_VERSION)
CATEGORIES= lang
MASTER_SITES= http://ftp.squeak.org/$(SQUEAK_VERSION)/
EXTRACT_SUFX= .zip
DISTFILES= ${DEFAULT_DISTFILES} $(SQUEAK_SOURCES).gz
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://squeak.org/
COMMENT= Full Smalltalk 80 with portability to UN*X, Mac, and Windows
LICENCE= mit AND apache-2.0
DEPENDS= squeak-vm-[0-9]*:../../lang/squeak-vm
DIST_SUBDIR= squeak
USE_TOOLS+= gzip unzip
NO_BUILD= yes
PLIST_SUBST+= IMAGE_VERSION=$(IMAGE_VERSION)
INSTALLATION_DIRS= share/squeak/$(SQUEAK_VERSION)
post-extract:
$(GZIP_CMD) -dc $(DISTDIR)/$(DIST_SUBDIR)/$(SQUEAK_SOURCES).gz > $(WRKDIR)/$(SQUEAK_SOURCES)
do-install:
$(INSTALL_DATA) $(WRKDIR)/$(DISTNAME:=.image) $(DESTDIR)$(PREFIX)/share/squeak/$(SQUEAK_VERSION)/
$(INSTALL_DATA) $(WRKDIR)/$(DISTNAME:=.changes) $(DESTDIR)$(PREFIX)/share/squeak/$(SQUEAK_VERSION)/
$(INSTALL_DATA) $(WRKDIR)/$(SQUEAK_SOURCES) $(DESTDIR)$(PREFIX)/share/squeak/$(SQUEAK_VERSION)/$(SQUEAK_SOURCES)
.include "../../mk/bsd.pkg.mk"