freebsd-ports/emulators/fuse/Makefile
Stefan Eßer b7f05445c0 Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
2022-09-07 23:10:59 +02:00

76 lines
2.1 KiB
Makefile

PORTNAME= fuse
PORTVERSION= 1.6.0
PORTREVISION= 2
CATEGORIES= emulators
MASTER_SITES= SF/${PORTNAME}-emulator/${PORTNAME}/${PORTVERSION}
MAINTAINER= rene@FreeBSD.org
COMMENT= Free Unix (Sinclair ZX-)Spectrum Emulator
WWW= http://fuse-emulator.sourceforge.net
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}
.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>