freebsd-ports/lang/pm3-gui/Makefile
2009-01-05 16:14:19 +00:00

75 lines
1.8 KiB
Makefile

# New ports collection makefile for: pm3-gui
# Date created: 6 Feb 2000
# Whom: John Polstra <jdp@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= pm3-gui
PORTVERSION= 1.1.15
PORTREVISION= 1
CATEGORIES= lang
DISTFILES=
MAINTAINER= ports@FreeBSD.org
COMMENT= Low-level GUI libraries for the PM3 Modula-3 distribution
BUILD_DEPENDS= ${L1}libm3tcp${L2}:${PORTSDIR}/lang/pm3-net \
/nonexistent:${PORTSDIR}/lang/pm3-base:configure
RUN_DEPENDS= ${L1}libm3tcp${L2}:${PORTSDIR}/lang/pm3-net
DEPRECATED= depends on broken, expired port
EXPIRATION_DATE=2009-01-19
DIST_SUBDIR= pm3
INSTALL_TARGET= all
PLIST_SUB+= SOVERSION=${SOVERSION} TARGET=${TARGET} \
INST_TARGET=${INST_TARGET} WORDSIZE=${WORDSIZE}
USE_XLIB= yes
USE_GMAKE= yes
WRKSRC= ${WRKDIRPREFIX}${.CURDIR}/../pm3-base/work/pm3-${PORTVERSION}
BUILDDIRS= graphics/gr-libs/X11 \
graphics/gr-libs/ui \
graphics/gr-libs/images \
graphics/gr-libs/vbtkit
L1= ${PREFIX}/lib/m3/${TARGET}/
SOVERSION= 7
# hack to work around bsd.port.mk problem
USE_BZIP2= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
L2= .so.${SOVERSION}
TARGET= FreeBSD4
INST_TARGET= freebsd-4
WORDSIZE= 32
.elif ${ARCH} == "alpha"
CFLAGS+= -mieee
L2= .so.${SOVERSION}
TARGET= FBSD_ALPHA
INST_TARGET= 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 ${BUILDDIRS}; do \
${ECHO_MSG} "Building in $${i}"; \
cd ${WRKSRC}/$${i} && ${PREFIX}/bin/m3build && \
${PREFIX}/bin/m3ship; \
done
@${MKDIR} ${PREFIX}/share/pm3-gui
@${INSTALL_DATA} ${WRKSRC}/src/COPYRIGHT ${PREFIX}/share/pm3-gui
.include <bsd.port.post.mk>