8074c7da31
copy of libtool on gtar, which can break with dpb junking. sync WANTLIB while there.
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.28 2013/01/09 21:14:34 sthen Exp $
|
|
|
|
COMMENT= Free Unix Spectrum Emulator
|
|
DISTNAME= fuse-0.10.0.2
|
|
REVISION= 7
|
|
CATEGORIES= emulators
|
|
HOMEPAGE= http://fuse-emulator.sourceforge.net/
|
|
|
|
# GPLv2+
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += X11 Xext ao audiofile bz2 c gcrypt glib-2.0 gpg-error
|
|
WANTLIB += m pcre png pthread samplerate spectrum xcb xml2 z
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fuse-emulator/}
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
MODULES= devel/gettext
|
|
LIB_DEPENDS= devel/glib2 \
|
|
audio/libsamplerate \
|
|
devel/libspectrum \
|
|
graphics/png \
|
|
textproc/libxml \
|
|
audio/libao
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/libpng" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
LIBS="-lbz2"
|
|
CONFIGURE_ARGS= --with-libao
|
|
|
|
FLAVORS=gtk
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:Mgtk}
|
|
LIB_DEPENDS+= x11/gtk+2 \
|
|
devel/glib2
|
|
CONFIGURE_ARGS+= --with-gtk2
|
|
|
|
WANTLIB += GL Xcomposite Xcursor Xdamage Xfixes Xi Xinerama Xrandr
|
|
WANTLIB += Xrender atk-1.0 cairo expat ffi fontconfig freetype
|
|
WANTLIB += gdk-x11-2.0 gdk_pixbuf-2.0 gio-2.0 gmodule-2.0 gobject-2.0
|
|
WANTLIB += gthread-2.0 gtk-x11-2.0 harfbuzz icudata icule icuuc
|
|
WANTLIB += pango-1.0 pangocairo-1.0 pangoft2-1.0 pixman-1 pthread-stubs
|
|
WANTLIB += xcb-render xcb-shm
|
|
.else
|
|
CONFIGURE_ARGS+= --without-gtk
|
|
WANTLIB += ICE SM
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|