freebsd-ports/emulators/fuse/Makefile
Niclas Zeising 39fc32e828 The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:

NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE

This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.

This patch also contains updates of libxcb and related ports, pixman, as well
as some drivers and utilities.

Bump portrevisions for xf86-* ports, as well as virtualbox-ose-additions due
to xserver version change.

Apart from these updates, the way shared libraries are handled has been
changed for all xorg ports, as well as libxml2 and freetype, which means
ltverhack is gone and as a consequence shared libraries have been bumped.
The plan is that this change will make library bumps less likely in the
future.
All affected ports have had their portrevisions bumped as a consequence of
this.

Fix some issues where WITH_NEW_XORG weren't detected properly on CURRENT.

Update instructions, hardware support, and more notes can be found on
https://wiki.freebsd.org/Graphics

Thanks to:	all testers, bdrewery and the FreeBSD x11@ team
exp-run by:	bdrewery [1]
PR:		ports/187602 [1]
Approved by:	portmgr (bdrewery), core (jhb)
2014-04-16 18:28:47 +00:00

68 lines
1.8 KiB
Makefile

# Created by: Alexey V. Antipovsky <kemm@in-line.ru>
# $FreeBSD$
PORTNAME= fuse
PORTVERSION= 1.1.1
PORTREVISION= 3
CATEGORIES= emulators
MASTER_SITES= SF/${PORTNAME}-emulator/${PORTNAME}/${PORTVERSION}
MAINTAINER= rene@FreeBSD.org
COMMENT= Free Unix (Sinclair ZX-)Spectrum Emulator
LICENSE= GPLv2
LIB_DEPENDS= libspectrum.so:${PORTSDIR}/emulators/libspectrum \
libpng15.so:${PORTSDIR}/graphics/png \
libgcrypt.so:${PORTSDIR}/security/libgcrypt
GNU_CONFIGURE= yes
USES= pkgconfig gmake
USE_GNOME= libxml2 glib20
CONFIGURE_ARGS+=--without-alsa --without-joystick
CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}"
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
OPTIONS_DEFINE= AO ICONS ROMS
OPTIONS_DEFAULT= ICONS GTK2
OPTIONS_SINGLE= UI
UI_DESC= User Interface
ROMS_DESC= Extra ROM images (128p, 256s, Gluck, IF1, Opus, TrDOS)
OPTIONS_SINGLE_UI= GTK2 GTK3 SDL SVGALIB
OPTIONS_SUB= yes
AO_CONFIGURE_WITH= libao
AO_LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao
ICONS_USES= desktop-file-utils shared-mime-info
ICONS_CONFIGURE_ENABLE= desktop-integration
GTK2_USE= GNOME=gtk20
GTK2_CONFIGURE_ON= --with-gtk
GTK3_USE= GNOME=gtk30
GTK3_CONFIGURE_ON= --with-gtk
GTK3_CONFIGURE_ENABLE= gtk3
SDL_USE= SDL=sdl
SDL_CONFIGURE_WITH= sdl
SDL_CONFIGURE_ON= --without-gtk
SVGALIB_LIB_DEPENDS= libvga.so:${PORTSDIR}/graphics/svgalib
SVGALIB_CONFIGURE_WITH= svgalib
SVGALIB_CONFIGURE_ON= --without-gtk
ROMS_RUN_DEPENDS= fuse-roms>0:${PORTSDIR}/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>