mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
84ca1a0113
remove pgp* as rsaref has expired.
74 lines
2.0 KiB
Makefile
74 lines
2.0 KiB
Makefile
# Created by: Tobias Reifenberger <tr@freebsd.mayn.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= stonx
|
|
PORTVERSION= 0.6.7e.6
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF/stonx/stonx/0.6.7.6
|
|
DISTNAME= STonX-0.6.7.6
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= AtariST emulator
|
|
|
|
BUILD_DEPENDS= bdftopcf:${PORTSDIR}/x11-fonts/bdftopcf \
|
|
gccmakedep:${PORTSDIR}/devel/gccmakedep \
|
|
mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir \
|
|
mkfontscale:${PORTSDIR}/x11-fonts/mkfontscale \
|
|
${LOCALBASE}/lib/X11/fonts/misc/10x20-ISO8859-1.pcf.gz:${PORTSDIR}/x11-fonts/font-misc-misc
|
|
RUN_DEPENDS= mkfontdir:${PORTSDIR}/x11-fonts/mkfontdir
|
|
|
|
RESTRICTED= Contains ROM (C) by Atari
|
|
NO_STAGE= yes
|
|
|
|
TOSIMG?= tos.img
|
|
USE_XORG= x11 sm ice xext xextproto
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --x-includes=${LOCALBASE}/include \
|
|
--x-libraries=${LOCALBASE}/lib
|
|
ALL_TARGET= all fnttobdf tosfonts fonts
|
|
|
|
BINDIR= ${PREFIX}/bin
|
|
FNTDIR= ${PREFIX}/lib/X11/fonts/misc
|
|
|
|
DATA= atari/bench1.pas atari/bench1.prg
|
|
ETCFILES= keysyms-alternative keysyms-german keysyms-spanish
|
|
DOCS= ../COPYING AUTHORS DEBUGGING INSTALL README RELEASE_NOTES \
|
|
TOS-VERSIONS
|
|
FONTS= System0-iso.pcf System0.pcf System1-iso.pcf System1.pcf \
|
|
System2-iso.pcf System2.pcf
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
pre-build:
|
|
${CP} ${DISTDIR}/${TOSIMG} ${WRKSRC}/tos.img
|
|
|
|
post-install:
|
|
.for f in ${ETCFILES}
|
|
${INSTALL_DATA} ${WRKSRC}/etc/$f ${ETCDIR}/
|
|
.endfor
|
|
@${ECHO_MSG} "===> Installing fonts"
|
|
.for f in ${FONTS}
|
|
${INSTALL_DATA} ${WRKSRC}/data/$f ${FNTDIR}/
|
|
${GZIP_CMD} ${FNTDIR}/$f
|
|
.endfor
|
|
mkfontdir ${FNTDIR}
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/docs/,} ${DOCSDIR}/
|
|
.endif
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
${MKDIR} ${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${DATA:S,^,${WRKSRC}/,} ${EXAMPLESDIR}/
|
|
.endif
|
|
.if (defined(DISPLAY) && ${DISPLAY} != "")
|
|
xset fp+ ${FNTDIR}
|
|
xset fp rehash
|
|
.endif
|
|
|
|
.if !exists(${DISTDIR}/${TOSIMG})
|
|
IGNORE= please get a ROM dump from your AtariST and save it as\
|
|
"${TOSIMG}" in "${DISTDIR}" manually, and then make again
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|