689f91fe52
Changes in FS-UAE Arcade 2.8.1: Added stretch / keep aspect toggle button to top right menu. Added V-Sync toggle button to top right menu. Ability to see and change variant before starting the game. Make menu rendering conformant to FS-UAE style. More transition animations. New cover rendering for non-portrait covers. Use --platform= to start with a given platform filter, e.g. --platform=cd32. Variant sort order fixed to be same as in FS-UAE Launcher. Fixed arrow keys for FS-UAE Arcade on MacOS. Reversed position of platform and publisher names. Changes in FS-UAE Arcade 2.8.2: Allow mouse to be used to activate the close button. Show mouse cursor briefly when moving the mouse.
52 lines
1.9 KiB
Makefile
52 lines
1.9 KiB
Makefile
# $NetBSD: Makefile,v 1.1 2018/02/08 20:58:50 adam Exp $
|
|
|
|
DISTNAME= fs-uae-arcade-2.8.3
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= http://fs-uae.net/fs-uae/stable/${PKGVERSION_NOREV}/
|
|
|
|
MAINTAINER= adam@NetBSD.org
|
|
HOMEPAGE= https://fs-uae.net/
|
|
COMMENT= Graphical launcher for FS-UAE, the Amiga Emulator
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DEPENDS+= fs-uae>=${PKGVERSION_NOREV}:../../emulators/fs-uae
|
|
DEPENDS+= ${PYPKGPREFIX}-lhafile-[0-9]*:../../archivers/py-lhafile
|
|
DEPENDS+= ${PYPKGPREFIX}-setuptools-[0-9]*:../../devel/py-setuptools
|
|
DEPENDS+= ${PYPKGPREFIX}-sqlite3-[0-9]*:../../databases/py-sqlite3
|
|
DEPENDS+= ${PYPKGPREFIX}-qt5>=5.4:../../x11/py-qt5
|
|
.include "../../mk/bsd.prefs.mk"
|
|
.if ${OPSYS} == "Darwin"
|
|
DEPENDS+= ${PYPKGPREFIX}-pyobjc-framework-Cocoa>=3:../../devel/py-pyobjc-framework-Cocoa
|
|
DEPENDS+= ${PYPKGPREFIX}-pyobjc-framework-Quartz>=3:../../devel/py-pyobjc-framework-Quartz
|
|
.endif
|
|
|
|
INSTALL_TARGET= install-data
|
|
USE_TOOLS+= gmake msgfmt
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 36 35 34 # import urllib.parse
|
|
PYSETUPINSTALLARGS= --install-lib=${PREFIX:Q}/share/fs-uae-arcade
|
|
PYSETUPINSTALLARGS+= --install-scripts=${PREFIX:Q}/share/fs-uae-arcade
|
|
|
|
REPLACE_PYTHON+= fs-uae-arcade
|
|
|
|
INSTALLATION_DIRS+= bin
|
|
|
|
SUBST_CLASSES+= prefix
|
|
SUBST_MESSAGE.prefix= Fixing installation prefix.
|
|
SUBST_STAGE.prefix= pre-configure
|
|
SUBST_FILES.prefix= Makefile
|
|
SUBST_FILES.prefix+= fs_uae_launcher/FSUAELauncher.py
|
|
SUBST_FILES.prefix+= game_center/gamecenterutil.py
|
|
SUBST_SED.prefix= -e 's,/usr/local,${PREFIX},'
|
|
|
|
post-install:
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} ${INSTALL_MAKE_FLAGS} \
|
|
-f ${MAKE_FILE} ${INSTALL_TARGET}
|
|
cd ${DESTDIR}${PREFIX}/bin && ${RM} -f fs-uae-arcade && \
|
|
${LN} -s ../share/fs-uae-arcade/fs-uae-arcade fs-uae-arcade
|
|
|
|
.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|