aboutsummaryrefslogtreecommitdiffstats
path: root/lang/squeak2/Makefile
blob: 5753c664c3c0a7a7f24f3bd399efb7356f799596 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# New ports collection makefile for:    squeak
# Version required:             2.3
# Date created:                 4 March 1999
# Whom:                         jesse@cs.uni-magdeburg.de
#
# $FreeBSD$
#

DISTNAME=   Squeak2.7-src
PKGNAME=    squeak-2.7
CATEGORIES= lang
MASTER_SITES=   ftp://ftp.inria.fr/INRIA/Projects/SOR/users/piumarta/squeak/ \
        ftp://ftp.cs.uni-magdeburg.de/pub/Smalltalk/free/squeak/unix/ \
        http://www.nectar.com/distfiles/squeak/
DISTFILES=  ${DISTNAME}${EXTRACT_SUFX} ${SQUEAK_SRC}

MAINTAINER= jesse@cs.uni-magdeburg.de

EXTRACT_ONLY=   ${DISTNAME}${EXTRACT_SUFX}
NO_WRKSUBDIR=   yes
USE_XLIB=   yes
USE_GMAKE=  yes
DIST_SUBDIR=    squeak
SQUEAK_SRC= SqueakV2.sources.gz Squeak2.7.image.gz Squeak2.7.changes.gz
SQUEAK_LIB= Profiler.so SoundCodecPrims.so Squeak3D.so System.so

MAKEFILE=   Makefile
.ifdef (CC)
MAKE_ARGS+= CC=${CC}
.endif
.ifdef (CFLAGS)
MAKE_ARGS+= CCFLAGS="${CFLAGS}"
.endif

do-install:
    @(cd ${WRKSRC}/freebsd && \
    ${INSTALL_PROGRAM} squeak ${PREFIX}/bin/squeak)
    ${MKDIR} ${PREFIX}/share/squeak
.for l in ${SQUEAK_LIB}
    (cd ${WRKSRC}/freebsd && ${INSTALL_DATA} $l ${PREFIX}/lib/$l)
.endfor
.for f in ${SQUEAK_SRC}
    (cd ${DISTDIR}/${DIST_SUBDIR} && ${INSTALL_DATA} $f ${PREFIX}/share/squeak/$f)
    (cd ${PREFIX}/share/squeak && ${EXTRACT_CMD} -d $f)
.endfor
    (cd ${PREFIX}/share/squeak && ${CHMOD} 644 Squeak2.7.changes)

post-install:
    @${ECHO} "Make sure you have ${PREFIX}/bin in your PATH"
    @${ECHO} "and ${PREFIX}/lib in your LD_LIBRARY_PATH."
    @${ECHO} ""
    @${ECHO} "In order to be able to make use of squeak you need"
    @${ECHO} "to have an image and a changes file in your working"
    @${ECHO} "directory as well as access to a source file."
    @${ECHO} "Execute the following:"
    @${ECHO} "cd <your_private_working_directory>"
    @${ECHO} "cp ${PREFIX}/share/squeak/Squeak2.7.image ."
    @${ECHO} "cp ${PREFIX}/share/squeak/Squeak2.7.changes ."
    @${ECHO} "ln -s ${PREFIX}/share/squeak/SqueakV2.sources ."
    @${ECHO} ""
    @${ECHO} "To finally start up the system type:"
    @${ECHO} "squeak Squeak2.7.image"

.include <bsd.port.mk>