diff options
Diffstat (limited to 'lang/pm3-gui/Makefile')
-rw-r--r-- | lang/pm3-gui/Makefile | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/lang/pm3-gui/Makefile b/lang/pm3-gui/Makefile new file mode 100644 index 000000000000..d1ac7a3e8c45 --- /dev/null +++ b/lang/pm3-gui/Makefile @@ -0,0 +1,75 @@ +# New ports collection makefile for: pm3-gui +# Version required: 1.1.13 +# Date created: 6 Feb 2000 +# Whom: John Polstra <jdp@freebsd.org> +# +# $FreeBSD$ +# + +DISTNAME= pm3-gui-${VERSION} +CATEGORIES= lang +DISTFILES= + +MAINTAINER= jdp@freebsd.org + +BUILD_DEPENDS= ${PREFIX}/lib/m3/${TARGET}/libm3tcp.so.${SOVERSION}:${PORTSDIR}/lang/pm3-net +RUN_DEPENDS= ${PREFIX}/lib/m3/${TARGET}/libm3tcp.so.${SOVERSION}:${PORTSDIR}/lang/pm3-net +DEPENDS= ${PORTSDIR}/lang/pm3-base:configure + +DIST_SUBDIR= pm3 +INSTALL_TARGET= all +PLIST_SUB+= SOVERSION=${SOVERSION} TARGET=${TARGET} \ + TARGETDIR=${TARGETDIR} WORDSIZE=${WORDSIZE} +USE_XLIB= yes +WRKSRC= ${WRKDIRPREFIX}${.CURDIR}/../pm3-base/work/pm3-${VERSION} + +BUILDDIRS= graphics/gr-libs/X11 \ + graphics/gr-libs/ui \ + graphics/gr-libs/images \ + graphics/gr-libs/vbtkit +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 + +.include <bsd.port.post.mk> |