aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/juno-2/Makefile
blob: 650f797dbd5cd74270d03f3789b5f812576e7899 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
# New ports collection makefile for:    juno-2
# Date created:     11 Feb 2000
# Whom:         John Polstra <jdp@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   juno-2
PORTVERSION=    1.23
CATEGORIES= graphics
MASTER_SITES=   http://www.research.compaq.com/SRC/juno-2/
DISTNAME=   juno-sources

MAINTAINER= jdp@FreeBSD.org
COMMENT=    A powerful and extensible constraint-based drawing editor

BUILD_DEPENDS=  ${L1}libm3netobj${L2}:${PORTSDIR}/lang/pm3-netobj \
        ${L1}libm3formsvbt${L2}:${PORTSDIR}/lang/pm3-forms
RUN_DEPENDS=    ${L1}libm3netobj${L2}:${PORTSDIR}/lang/pm3-netobj \
        ${L1}libm3formsvbt${L2}:${PORTSDIR}/lang/pm3-forms

MAN1=       Juno.1
PLIST_SUB+= SOVERSION=${SOVERSION} TARGET=${TARGET} \
        TARGETDIR=${TARGETDIR} WORDSIZE=${WORDSIZE}

BUILD1=     juno-machine \
        juno-compiler
BUILD2=     juno-app
L1=     ${PREFIX}/lib/m3/${TARGET}/
PROGS=      bin/Juno
SOVERSION=  7

.include <bsd.port.pre.mk>

.if ${PORTOBJFORMAT} == "aout"
L2=     .so.${SOVERSION}.0
TARGET=     FreeBSD2
TARGETDIR=  freebsd-2
WORDSIZE=   32
.elif ${ARCH} == "i386"
L2=     .so.${SOVERSION}
.if ${OSVERSION} < 400011
TARGET=     FreeBSD3
TARGETDIR=  freebsd-3
.else
TARGET=     FreeBSD4
TARGETDIR=  freebsd-4
.endif
WORDSIZE=   32
.elif ${ARCH} == "alpha"
.if ${OSVERSION} < 400011
IGNORE=     Not supported on older versions of FreeBSD/Alpha
.endif
CFLAGS+=    -mieee
L2=     .so.${SOVERSION}
TARGET=     FBSD_ALPHA
TARGETDIR=  fbsd-alpha
WORDSIZE=   64
.endif

.if !defined(TARGET)
pre-fetch:
    @${ECHO_MSG} "Cannot determine M3 target for this architecture"
    @${FALSE}
.endif

do-build:
    @${ECHO_MSG} "This port does everything in the install step."
    @${ECHO_MSG} "The build step is a no-op."

do-install:
    @for i in ${BUILD1}; do \
        ${ECHO_MSG} "Building in $${i}"; \
        (cd ${WRKSRC}/$${i} && ${PREFIX}/bin/m3build && \
        ${PREFIX}/bin/m3ship) \
    done
    @${ECHO_MSG} "Generating font metrics"
    @(cd ${WRKSRC}/juno-app/pkl-fonts; ${PREFIX}/bin/m3build; \
        cd ${TARGET}; ./PklFonts > FontData.pkl)
    @for i in ${BUILD2}; do \
        ${ECHO_MSG} "Building in $${i}"; \
        (cd ${WRKSRC}/$${i} && ${PREFIX}/bin/m3build && \
        ${PREFIX}/bin/m3ship) \
    done
    @for i in ${PROGS}; do strip ${PREFIX}/$$i; done
    @${ECHO_MSG} "Installing examples into ${PREFIX}/share/examples/Juno"
    @${MKDIR} ${PREFIX}/share/examples/Juno
    @${CP} -R ${WRKSRC}/juno-app/juno-src/* ${PREFIX}/share/examples/Juno
    @${MKDIR} ${PREFIX}/share/Juno
    @${INSTALL_DATA} ${FILESDIR}/COPYRIGHT ${PREFIX}/share/Juno

.include <bsd.port.post.mk>