mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
688b5ad8cd
- Convert to USES=gmake tar:bzip2
48 lines
1.3 KiB
Makefile
48 lines
1.3 KiB
Makefile
# Created by: Miguel Mendez <flynn@energyhq.es.eu.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= e-uae
|
|
DISTVERSION= 0.8.29.w4
|
|
PORTREVISION= 7
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://www.rcdrummond.net/uae/${DISTNAME}/
|
|
DISTNAME= e-uae-0.8.29-WIP4
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Enhanced version of UAE, the Amiga emulator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
CONFLICTS= uae-[0-9]*
|
|
|
|
USES= gmake tar:bzip2
|
|
USE_GNOME= gtk20
|
|
USE_SDL= sdl
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-sdl --with-sdl-gfx
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
PORTDOCS= ChangeLog README bsdsocket.txt cmd-line.txt \
|
|
compiling.txt configuration.txt floppies.txt \
|
|
joystick.txt keyboard.txt scsi.txt
|
|
PLIST_FILES= bin/readdisk bin/uae
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e '\,X11/xkb/rules,s,/usr/X11R6/lib,${LOCALBASE}/share,' \
|
|
-e 's,-W ,&-Wno-unused-parameter ,' \
|
|
${WRKSRC}/configure
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/uae ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/readdisk ${STAGEDIR}${PREFIX}/bin
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ChangeLog README docs/bsdsocket.txt \
|
|
docs/cmd-line.txt docs/compiling.txt docs/configuration.txt \
|
|
docs/floppies.txt docs/joystick.txt docs/keyboard.txt \
|
|
docs/scsi.txt ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|