summaryrefslogtreecommitdiff
path: root/lang/smalltalk/Makefile
blob: 384d5c06dbf697ad8befa95610e472f95636018a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# New ports collection makefile for:	smalltalk
# Version required:	1.1.1
# Date created:		09 Feb 1995
# Whom:			gpalmer
#
# $Id: Makefile,v 1.9 1996/06/05 17:35:13 jraynard Exp $
#

DISTNAME=	smalltalk-1.1.1
CATEGORIES=	lang
MASTER_SITES=	ftp://prep.ai.mit.edu/pub/gnu/

MAINTAINER=	jraynard@FreeBSD.ORG

IS_INTERACTIVE=	yes
NO_PACKAGE=yes

pre-configure:
	@{CP} ${FILESDIR}/m-fbsd-2.h ${WRKSRC}/config/m-fbsd-2.h
	@(cd ${WRKSRC} ; ./config.mst fbsd-2)
	@${TOUCH} ${TOUCH_FLAGS} ${CONFIGURE_COOKIE}

do-build:
	if [ -d ${X11BASE} ]; then (cd ${WRKSRC}/stix; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET}; ${CP} mst *.st ${WRKSRC}); else (cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${ALL_TARGET}); fi;

do-install:
	@echo "Installing method definitions..."
	@ if [ ! -d ${PREFIX}/lib/smalltalk ]; then ${MKDIR} ${PREFIX}/lib/smalltalk; fi
	@(cd ${WRKSRC}; ${CP} *.st ${PREFIX}/lib/smalltalk)
	@(cd ${PREFIX}/lib/smalltalk ; chmod +r *.st)
	@echo
	@echo
	@echo "To complete the installation of GNU Smalltalk, do"
	@echo "	cd ${WRKSRC}; ./mst -iV"
	@echo "to build the image and test the interpreter."
	@echo
	@echo "When you are satisfied everything works, do Control-D to quit"
	@echo "(this will give a parse error, which can be safely ignored)"
	@echo "followed by 'cp mst ${PREFIX}/bin'."
	@echo
	@echo "Finally, if Emacs is installed, you may also wish to copy the"
	@echo "st*.el files to the Emacs Lisp directory. This will enable you"
	@echo "to configure Emacs for Interactor mode."
	@echo
	@echo ">>Please read the file" 
	@echo "${WRKSRC}/mst.texinfo"
	@echo "for more information.<<"
	@echo

.include <bsd.port.mk>