mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
e696084d23
Approved by: miwi (mentor)
195 lines
5.5 KiB
Makefile
195 lines
5.5 KiB
Makefile
# New ports collection makefile for: gnash
|
|
# Date created: 12 Jan 2006
|
|
# Whom: Dmitry Marakasov <amdmi3@amdmi3.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gnash
|
|
PORTVERSION= 0.8.3
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://getgnash.org/packages/releases/ \
|
|
${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}/${PORTVERSION}
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= GNU Flash movie player
|
|
|
|
LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost \
|
|
jpeg.9:${PORTSDIR}/graphics/jpeg \
|
|
curl.4:${PORTSDIR}/ftp/curl
|
|
|
|
CONFLICTS= gnash-devel-[0-9]*
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
WANT_SDL= yes
|
|
WANT_GNOME= yes
|
|
USE_GCC= 4.2+ # triggers compiler error on gcc 3.4
|
|
WANT_GSTREAMER= yes
|
|
USE_GNOME= pkgconfig libxml2
|
|
USE_XORG= x11 xau xdmcp xext xi xinerama ice sm
|
|
USE_AUTOTOOLS= libltdl:15
|
|
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
PTHREAD_LIBS="${PTHREAD_LIBS}" \
|
|
PTHREAD_CFLAGS="${PTHREAD_CFLAGS} ${PTHREAD_LIBS}"
|
|
CONFIGURE_ARGS= --with-boost-incl="${LOCALBASE}/include" \
|
|
--with-boost-lib="${LOCALBASE}/lib" \
|
|
--with-npapi-plugindir="${PREFIX}/lib/browser_plugins" \
|
|
--with-kde-pluginprefix="${PREFIX}"
|
|
|
|
GNASHVER= ${DISTVERSION}
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${GNASHVER}
|
|
PLIST_SUB+= GNASHVER="${GNASHVER}"
|
|
|
|
USE_LDCONFIG= ${PREFIX}/lib/gnash
|
|
|
|
MAN1= cygnal.1 gnash.1 gprocessor.1 soldumper.1 dumpshm.1
|
|
|
|
OPTIONS= PLUGIN "Enable browser plugin" on \
|
|
CYGNAL "Enable Cygnal media server" off \
|
|
GTK "GUI: GTK (required for Mozilla/Firefox plugin)" on \
|
|
KDE "GUI: KDE (required for Konqueror plugin)" off \
|
|
AGG "Renderer: AGG" on \
|
|
OPENGL "Renderer: OpenGL (broken)" off \
|
|
CAIRO "Renderer: Cairo (experimental)" off \
|
|
FFMPEG "Media handler: ffmpeg (+SDL sound output)" on \
|
|
GSTREAMER "Media handler: GStreamer" off
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Plugin option processing
|
|
.if defined(WITH_GTK) && !defined(WITHOUT_PLUGIN)
|
|
PLIST_SUB+= FFPLUGIN=""
|
|
.else
|
|
PLIST_SUB+= FFPLUGIN="@comment "
|
|
CONFIGURE_ARGS+= --disable-nsapi
|
|
.endif
|
|
|
|
.if defined(WITH_KDE) && !defined(WITHOUT_PLUGIN)
|
|
PLIST_SUB+= KONQPLUGIN=""
|
|
USE_LDCONFIG+= ${PREFIX}/lib/kde3
|
|
.else
|
|
PLIST_SUB+= KONQPLUGIN="@comment "
|
|
CONFIGURE_ARGS+= --disable-kparts
|
|
.endif
|
|
|
|
# Cygnal option processing
|
|
.if defined(WITH_CYGNAL)
|
|
PLIST_SUB+= CYGNAL=""
|
|
CONFIGURE_ARGS+= --enable-cygnal
|
|
.else
|
|
PLIST_SUB+= CYGNAL="@comment "
|
|
CONFIGURE_ARGS+= --disable-cygnal
|
|
.endif
|
|
|
|
# NLS option processing (not sure if --disable-nls actually has any effect)
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
#
|
|
# GUI options processing
|
|
#
|
|
GNASH_GUIS=
|
|
|
|
.if defined(WITH_GTK)
|
|
USE_GNOME= gtk20
|
|
GNASH_GUIS+= gtk
|
|
PLIST_SUB+= GTK=""
|
|
.else
|
|
PLIST_SUB+= GTK="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_KDE)
|
|
GNASH_GUIS+= kde
|
|
PLIST_SUB+= KDE=""
|
|
# We have to use this lame way to depend on kdelibs, as USE_KDELIBS_VER won't
|
|
# work after bsd.port.pre.mk, and bsd.port.options.mk is unavailable until
|
|
# 5.5/6.2 EOL. We could also include bsd.kde.mk here, but that's much more
|
|
# likely to bring more trouble
|
|
LIB_DEPENDS+= kimproxy:${PORTSDIR}/x11/kdelibs3
|
|
.else
|
|
PLIST_SUB+= KDE="@comment "
|
|
.endif
|
|
|
|
.if ${GNASH_GUIS} == ""
|
|
IGNORE= needs at least one GUI enabled. Please rerun 'make config' and enable GTK, KDE or both GUIs
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --enable-gui=`${ECHO} ${GNASH_GUIS} | ${TR} ' ' ,`
|
|
|
|
#
|
|
# Renderer options processing
|
|
#
|
|
.if defined(WITH_AGG) && !defined(WITH_OPENGL) && !defined(WITH_CAIRO)
|
|
LIB_DEPENDS+= agg.2:${PORTSDIR}/graphics/agg
|
|
CONFIGURE_ARGS+= --enable-renderer=agg
|
|
.elif !defined(WITH_AGG) && defined(WITH_OPENGL) && !defined(WITH_CAIRO)
|
|
USE_GL= yes
|
|
. if defined(WITH_GTK)
|
|
LIB_DEPENDS+= gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext
|
|
. endif
|
|
CONFIGURE_ARGS+= --enable-renderer=ogl
|
|
.elif !defined(WITH_AGG) && !defined(WITH_OPENGL) && defined(WITH_CAIRO)
|
|
. if defined(WITH_KDE)
|
|
IGNORE= doesn't support Cairo renderer with KDE gui. Please rerun 'make config' and select different renderer or disable KDE GUI
|
|
. endif
|
|
LIB_DEPENDS+= cairo.2:${PORTSDIR}/graphics/cairo
|
|
CONFIGURE_ARGS+= --enable-renderer=cairo
|
|
.else
|
|
IGNORE= can't be built with multiple or without renderers enabled. Please rerun 'make config' and select exactly one renderer (agg|opengl|cairo)
|
|
.endif
|
|
|
|
#
|
|
# Media handler options processing
|
|
#
|
|
.if defined(WITH_FFMPEG) && !defined(WITH_GSTREAMER)
|
|
LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg
|
|
CONFIGURE_ARGS+= --enable-media=ffmpeg
|
|
USE_SDL+= sdl
|
|
.elif !defined(WITH_FFMPEG) && defined(WITH_GSTREAMER)
|
|
USE_GSTREAMER= yes
|
|
CONFIGURE_ARGS+= --enable-media=gst
|
|
.elif !defined(WITH_FFMPEG) && !defined(WITH_GSTREAMER)
|
|
CONFIGURE_ARGS+= --enable-media=none
|
|
.else
|
|
IGNORE= can't be built with multiple media handlers enabled. Please rerun 'make config' and leave one or none of them (ffmpeg|gstreamer)
|
|
.endif
|
|
|
|
pre-everything::
|
|
.if defined(WITH_OPENGL)
|
|
@${ECHO_CMD} "OpenGL support is currently broken (Gnash hangs using 100% CPU). Use at your own risk"
|
|
@sleep 3
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^PTHREAD_[LC][IF]*=/ d' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g; \
|
|
s|/lib64|/lib|g; \
|
|
s|/usr/X11R6|${LOCALBASE}|g' ${WRKSRC}/configure \
|
|
${WRKSRC}/macros/libslist ${WRKSRC}/macros/incllist
|
|
|
|
.if !defined(WITHOUT_PLUGIN)
|
|
post-install:
|
|
.if defined(WITH_GTK)
|
|
@cd ${INSTALL_WRKSRC}/plugin && \
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} install-plugin
|
|
.endif
|
|
.if defined(WITH_KDE)
|
|
@cd ${INSTALL_WRKSRC}/plugin/klash && \
|
|
${SETENV} ${MAKE_ENV} ${GMAKE} ${MAKE_ARGS} install-plugin
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|