mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
755d8aa290
References: https://www.vogons.org/viewtopic.php?f=31&t=62703 PR: 244960 Submitted by: tobias.rehbein@web.de Reviewed by: knyght@gmail.com (maintainer)
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
# Created by: Tom Carrick <knyghtmare@knyghtmare.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dosbox
|
|
DISTVERSION= 0.74-3
|
|
PORTREVISION= 1
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${DISTVERSION}
|
|
|
|
MAINTAINER= knyght@gmail.com
|
|
COMMENT= Emulator of a PC with DOS
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png
|
|
|
|
USES= sdl
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-core-inline
|
|
USE_SDL= sdl net sound
|
|
|
|
PLIST_FILES= bin/dosbox man/man1/dosbox.1.gz share/pixmaps/dosbox.ico
|
|
PORTDOCS= NEWS README
|
|
|
|
DESKTOP_ENTRIES="DOSBox" "${COMMENT}" \
|
|
"${PREFIX}/share/pixmaps/dosbox.ico" "dosbox" \
|
|
"System;Emulator;" true
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_RADIO= DEBUGGER
|
|
OPTIONS_RADIO_DEBUGGER=DEBUGGER_ENABLE DEBUGGER_HEAVY
|
|
DEBUGGER_ENABLE_DESC=Enable internal debugger
|
|
DEBUGGER_HEAVY_DESC=Enable internal debugger with extra features
|
|
|
|
DEBUGGER_ENABLE_CONFIGURE_ON= --enable-debug=yes
|
|
DEBUGGER_HEAVY_CONFIGURE_ON= --enable-debug=heavy
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's#\/usr\/share\/doc\/dosbox#${DOCSDIR}#g' \
|
|
${WRKSRC}/docs/dosbox.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/dosbox ${STAGEDIR}${PREFIX}/bin/dosbox
|
|
${INSTALL_DATA} ${WRKSRC}/src/dosbox.ico ${STAGEDIR}${PREFIX}/share/pixmaps/
|
|
${INSTALL_MAN} ${WRKSRC}/docs/dosbox.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|