mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
e2903b46d3
- Add LICENSE - Convert USE_GMAKE to USES - Add stage support
31 lines
645 B
Makefile
31 lines
645 B
Makefile
# Created by: Marc Fonvieille <blackend@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= minivmac
|
|
PORTVERSION= 3.0.0
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF
|
|
DISTFILES= ${PORTNAME}-${PORTVERSION}.src.tgz ${PORTNAME}-${PORTVERSION}.prj.tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Miniature Macintosh emulator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
WRKSRC= ${WRKDIR}/projects/bgclx86d
|
|
|
|
USE_XORG= x11 xext
|
|
USES= gmake
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
ALL_TARGET= # nothing
|
|
|
|
PLIST_FILES= bin/minivmac
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/X11R6|${LOCALBASE}|' ${WRKSRC}/Makefile
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/minivmac ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|