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)
41 lines
915 B
Makefile
41 lines
915 B
Makefile
# New ports collection makefile for: qix
|
|
# Date created: 6 June 2000
|
|
# Whom: jmz
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= qix
|
|
PORTVERSION= 1.2
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}
|
|
MASTER_SITE_SUBDIR= jmz
|
|
|
|
MAINTAINER= jmz@FreeBSD.org
|
|
COMMENT= The classic arcade game
|
|
|
|
BUILD_DEPENDS= bdftopcf:${X_CLIENTS_PORT}
|
|
RUN_DEPENDS= mkfontdir:${X_CLIENTS_PORT}
|
|
|
|
.if defined(WITHOUT_X11)
|
|
MAKE_ARGS= NO_X11=yes
|
|
.else
|
|
USE_X_PREFIX= yes
|
|
PLIST= pkg-plist.x11
|
|
.endif
|
|
|
|
.if !defined(DISPLAY) || ${DISPLAY} == ""
|
|
IGNORE= Requires an active X session (and DISPLAY variable) to run xrdb. Please compile this while running X.
|
|
.endif
|
|
|
|
MAN1= qix.1
|
|
|
|
FONTSDIR= lib/X11/fonts/local
|
|
PLIST_SUB= FONTSDIR=${FONTSDIR}
|
|
|
|
do-configure:
|
|
@${CP} ${WRKSRC}/Makefile ${WRKSRC}/Makefile~
|
|
${SED} -e s:/usr/local:${PREFIX}: -e s:/usr/X11R6:${PREFIX}: \
|
|
< ${WRKSRC}/Makefile~ > ${WRKSRC}/Makefile
|
|
|
|
.include <bsd.port.mk>
|