mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
78 lines
2.1 KiB
Makefile
78 lines
2.1 KiB
Makefile
# Created by: Alexey V. Antipovsky <kemm@in-line.ru>
|
|
|
|
PORTNAME= fuse
|
|
PORTVERSION= 1.6.0
|
|
CATEGORIES= emulators
|
|
MASTER_SITES= SF/${PORTNAME}-emulator/${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= rene@FreeBSD.org
|
|
COMMENT= Free Unix (Sinclair ZX-)Spectrum Emulator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
|
|
libfreetype.so:print/freetype2 \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libpng.so:graphics/png \
|
|
libspectrum.so:emulators/libspectrum
|
|
|
|
USES= compiler:c++11-lang gettext gmake gnome localbase perl5 \
|
|
pkgconfig xorg
|
|
USE_PERL5= build
|
|
USE_GNOME= libxml2 glib20
|
|
USE_XORG= x11
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+=--without-joystick # TODO needs libjsw for GTK
|
|
|
|
OPTIONS_DEFINE= ICONS ROMS DOCS
|
|
OPTIONS_DEFAULT= ICONS OSS GTK3
|
|
OPTIONS_SINGLE= AUDIO UI
|
|
AUDIO_DESC= Audio output interface
|
|
UI_DESC= User Interface
|
|
ROMS_DESC= Extra ROM images (128p, 256s, Gluck, IF1, Opus, TrDOS)
|
|
OPTIONS_SINGLE_AUDIO= ALSA AO OSS PULSEAUDIO
|
|
OPTIONS_SINGLE_UI= GTK2 GTK3 SDL SVGALIB
|
|
|
|
OPTIONS_SUB= yes
|
|
ALSA_CONFIGURE_ON= --with-audio-driver=alsa
|
|
ALSA_LIB_DEPENDS= libasound.so:audio/alsa-lib
|
|
AO_CONFIGURE_ON= --with-audio-driver=libao
|
|
AO_LIB_DEPENDS= libao.so:audio/libao
|
|
OSS_CONFIGURE_ON= --with-audio-driver=oss
|
|
PULSEAUDIO_CONFIGURE_ON=--with-audio-driver=pulseaudio
|
|
PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio
|
|
ICONS_USES= desktop-file-utils shared-mime-info
|
|
ICONS_CONFIGURE_ENABLE= desktop-integration
|
|
GTK2_USE= GNOME=cairo,gtk20
|
|
GTK2_CONFIGURE_ON= --disable-gtk3
|
|
GTK3_USE= GNOME=cairo,gtk30
|
|
GTK3_CONFIGURE_ENABLE= gtk3
|
|
SDL_USES= sdl
|
|
SDL_USE= SDL=sdl2
|
|
SDL_CONFIGURE_WITH= sdl
|
|
SDL_CONFIGURE_ON= --without-gtk
|
|
SVGALIB_LIB_DEPENDS= libvga.so:graphics/svgalib
|
|
SVGALIB_CONFIGURE_WITH= svgalib
|
|
SVGALIB_CONFIGURE_ON= --without-gtk
|
|
ROMS_RUN_DEPENDS= fuse-roms>0:emulators/fuse-roms
|
|
|
|
PORTDOCS= AUTHORS ChangeLog README THANKS README.copyright
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MICONS}
|
|
INSTALLS_ICONS= yes
|
|
.endif
|
|
|
|
post-extract:
|
|
${CP} ${WRKSRC}/roms/README.copyright ${WRKSRC}
|
|
|
|
post-install:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|