mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
1c48b1db66
This still installs documentation in lib/vice/docs/ (or something like that) instead of share/doc/vice/.
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
# New ports collection makefile for: vice
|
|
# Version required: 0.14.1
|
|
# Date created: Mar 28, 1998
|
|
# Whom: dchapes@ddm.on.ca
|
|
#
|
|
# $Id: Makefile,v 1.6 1998/08/07 23:56:19 asami Exp $
|
|
|
|
DISTNAME= vice-0.14.1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= ftp://ftp.funet.fi/pub/cbm/crossplatform/emulators/VICE/
|
|
|
|
MAINTAINER= dchapes@ddm.on.ca
|
|
|
|
LIB_DEPENDS= Xaw3d\\.6\\.:${PORTSDIR}/x11-toolkits/Xaw3d
|
|
USE_XLIB= yes
|
|
|
|
WRKSRC= ${WRKDIR}/vice-0.14.1/src
|
|
|
|
RESTRICTED= ROMs are copyrighted by Commodore Business Machines
|
|
NO_CDROM= ${RESTRICTED}
|
|
NO_PACKAGE= ${RESTRICTED}
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CFLAGS="${CFLAGS} -O3 -Wall -fomit-frame-pointer \
|
|
-funroll-loops -finline-functions -fno-strength-reduce"
|
|
CONFIGURE_ARGS= --with-xaw3d
|
|
|
|
MAN1= vice.1 c1541.1 petcat.1
|
|
|
|
pre-build:
|
|
@${ECHO} "NOTE: When compiling on FreeBSD some source files cause\
|
|
gcc to go over the default memory limits. Either fix\
|
|
/etc/login.conf or temporarily adjust the limits with your\
|
|
shell's limit command (\"unlimit\" works in [t]csh)." | fmt
|
|
|
|
post-install:
|
|
.for m in ${MAN1}
|
|
${INSTALL_MAN} ${WRKSRC}/../man/${m:S/.1$/.man/} ${PREFIX}/man/man1/$m
|
|
.endfor
|
|
.if defined(NOMANCOMPRESS)
|
|
${LN} -sf vice.1 ${PREFIX}/man/man1/x64.1
|
|
${LN} -sf vice.1 ${PREFIX}/man/man1/xvic.1
|
|
${LN} -sf vice.1 ${PREFIX}/man/man1/xpet.1
|
|
${LN} -sf vice.1 ${PREFIX}/man/man1/recomment.1
|
|
.else
|
|
${LN} -sf vice.1.gz ${PREFIX}/man/man1/x64.1.gz
|
|
${LN} -sf vice.1.gz ${PREFIX}/man/man1/xvic.1.gz
|
|
${LN} -sf vice.1.gz ${PREFIX}/man/man1/xpet.1.gz
|
|
${LN} -sf vice.1.gz ${PREFIX}/man/man1/recomment.1.gz
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|