aboutsummaryrefslogtreecommitdiffstats
path: root/lang/pm3-forms/Makefile
blob: 131d81e498f9fa0851c0fb516b0a62588f2a4c2e (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
# New ports collection makefile for:    pm3-forms
# Version required: 1.1.13
# Date created:     6 Feb 2000
# Whom:         John Polstra <jdp@freebsd.org>
#
# $FreeBSD$
#

DISTNAME=   pm3-forms-${VERSION}
CATEGORIES= lang
DISTFILES=

MAINTAINER= jdp@freebsd.org

BUILD_DEPENDS=  ${PREFIX}/lib/m3/${TARGET}/libm3vbtkit.so.${SOVERSION}:${PORTSDIR}/lang/pm3-gui
RUN_DEPENDS=    ${PREFIX}/lib/m3/${TARGET}/libm3vbtkit.so.${SOVERSION}:${PORTSDIR}/lang/pm3-gui
DEPENDS=    ${PORTSDIR}/lang/pm3-base:configure

DIST_SUBDIR=    pm3
INSTALL_TARGET= all
MAN1=       formsedit.1
PLIST_SUB+= SOVERSION=${SOVERSION} TARGET=${TARGET} \
        TARGETDIR=${TARGETDIR} WORDSIZE=${WORDSIZE}
WRKSRC=     ${WRKDIRPREFIX}${.CURDIR}/../pm3-base/work/pm3-${VERSION}

BUILDDIRS=  network/www/web \
        graphics/gr-libs/jvideo \
        graphics/gr-libs/videovbt \
        graphics/forms/formsvbtpixmaps \
        graphics/forms/formsvbt \
        graphics/forms/formsedit
PROGS=      bin/formsedit
SOVERSION=  7
VERSION=    1.1.13

.include <bsd.port.pre.mk>

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

.if empty(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 ${BUILDDIRS}; 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

.include <bsd.port.post.mk>