73 lines
1.7 KiB
Makefile
73 lines
1.7 KiB
Makefile
# $OpenBSD: Makefile,v 1.45 2011/09/16 12:00:06 espie Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
ONLY_FOR_ARCHS= ${GCC4_ARCHS}
|
|
|
|
COMMENT= SWF player with Firefox browser plugin
|
|
|
|
VER= 0.8.9
|
|
DISTNAME= gnash-${VER}
|
|
REVISION= 2
|
|
EPOCH= 0
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_GNU:=gnash/${VER}/}
|
|
|
|
HOMEPAGE= http://gnashdev.org
|
|
|
|
MAINTAINER= Brad Smith <brad@comstyle.com>
|
|
|
|
# GPLv3
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= SDL X11 agg avcodec avformat avutil boost_program_options-mt \
|
|
boost_thread-mt c curl freetype fontconfig gdk_pixbuf-2.0 \
|
|
gdk-x11-2.0 gif glib-2.0 gobject-2.0 gtk-x11-2.0 jpeg ltdl m \
|
|
glib-2.0 gobject-2.0 gtk-x11-2.0 png pthread speex speexdsp \
|
|
stdc++ swscale z
|
|
|
|
MODULES= devel/gettext
|
|
BUILD_DEPENDS= devel/xulrunner/1.9,-devel
|
|
RUN_DEPENDS= devel/desktop-file-utils
|
|
LIB_DEPENDS= audio/speex \
|
|
devel/boost \
|
|
devel/libtool,-ltdl \
|
|
devel/sdl \
|
|
graphics/agg \
|
|
graphics/ffmpeg \
|
|
graphics/jpeg \
|
|
graphics/libungif \
|
|
graphics/png \
|
|
net/curl \
|
|
x11/gtk+2
|
|
|
|
USE_GMAKE= Yes
|
|
USE_LIBTOOL= Yes
|
|
LIBTOOL_FLAGS+= --tag=disable-static
|
|
CONFIGURE_STYLE= autoconf
|
|
AUTOCONF_VERSION= 2.67
|
|
CONFIGURE_ARGS= --disable-cygnal \
|
|
--disable-jemalloc \
|
|
--enable-renderer=agg \
|
|
--enable-gui=gtk \
|
|
--enable-media=ffmpeg \
|
|
--with-npapi-plugindir=${LOCALBASE}/lib/mozilla/plugins
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
INSTALL_TARGET= install install-plugins
|
|
|
|
# testsuite available at http://www.gnashdev.org/testcases/
|
|
NO_REGRESS= Yes
|
|
|
|
SUBST_VARS= VER
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/gnash
|
|
${INSTALL_DATA} ${WRKSRC}/libbase/{gnashpluginrc,gnashrc} \
|
|
${PREFIX}/share/examples/gnash
|
|
|
|
.include <bsd.port.mk>
|