mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-06 06:30:19 +00:00
4eb209da7d
and make XFREE86_VERSION map to it. XFREE86_VERSION is now deprecated. - Make xorg the default X_WINDOW_SYSTEM on -current. - Add several new X_*_PORT variables which point to various pieces of X11 based on the setting of X_WINDOW_SYSTEM, and make ports use them. - Add information to CHANGES about how to handle the transition. PR: ports/68763 Approved by: portmgr (marcus) Approved by: re (scottl)
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: x3270
|
|
# Date created: 31 January 1995
|
|
# Whom: janek
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= x3270
|
|
PORTVERSION= 3.1.1.6
|
|
CATEGORIES= x11
|
|
MASTER_SITES= ${MASTER_SITE_XCONTRIB}
|
|
MASTER_SITE_SUBDIR= applications
|
|
|
|
MAINTAINER= Yonatan@xpert.com
|
|
COMMENT= 3270 Terminal emulator
|
|
|
|
BUILD_DEPENDS= bdftopcf:${X_CLIENTS_PORT}
|
|
RUN_DEPENDS= mkfontdir:${X_CLIENTS_PORT}
|
|
|
|
USE_IMAKE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/x3270-3.1.1
|
|
MAN1= x3270.1 x3270if.1 x3270-script.1 ibm_hosts.1
|
|
MANCOMPRESSED= yes
|
|
USE_REINPLACE= yes
|
|
|
|
pre-install:
|
|
.if !exists(${X11BASE}/lib/X11/fonts/local)
|
|
@${ECHO} "*********************************************************"
|
|
@${ECHO} "Please update your XFree86 to version 3.3.3 or later"
|
|
@${ECHO} "or add ${X11BASE}/lib/X11/fonts/local to your font path"
|
|
@${ECHO} "in /etc/XF86Config."
|
|
@${ECHO} "*********************************************************"
|
|
.endif
|
|
|
|
#
|
|
# This patch is to make sure that mkversion.sh can be ran on FreeBSD 4-STABLE
|
|
# which will get $(CLIENTENVSETUP) in its CC macro.
|
|
#
|
|
post-configure:
|
|
${REINPLACE_CMD} \
|
|
-e 's,sh \./mkversion\.sh $$(CC),$$(CLIENTENVSETUP) sh ./mkversion.sh %%CC%%,' \
|
|
-e 's,%%CC%%,${CC},' \
|
|
${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|