a8aa2c26db
Changes since 0.8.8: * Probe fixes * Thread and queue fixes fixes * Documentation updates * Important GstBin state change fix - see #166371 if you subclass Bugs fixed since 0.8.8: * 94464 : [threads] gst_scheduler_add_scheduler() doesn't ref passe... * 123775 : [PATCH] [api] setting state on element should force highe... * 142588 : [threads] if all elements have been removed from a bin, s... * 150546 : [api] Error for calling gst_pad_push in a get function is... * 162276 : [build] gstregistry.h and gstxmlregistry.c don't build wi... * 163234 : [PATCH] plugin loading isn't thread-safe * 163383 : [PATCH] ogm plugins won't register * 163801 : [PATCH] mem leak in xml registry loading * 164062 : [PATCH] tee capsnego is broken * 164261 : [PATCH] GST parsing doesn't recognise urls without a file... * 165272 : [PATCH] Problem compiling gstreamer 0.8.8 * 165365 : [PATCH] gst_string_wrap() segfaults on NULL strings * 165922 : add locking in opt * 166269 : Typo in current .po file msgid string * 166362 : data discarded by probes is leaked * 166371 : GstBin derived classes not notified of state change
55 lines
1.5 KiB
Makefile
55 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.22 2005/02/09 13:37:17 jmmv Exp $
|
|
#
|
|
|
|
DISTNAME= gstreamer-0.8.9
|
|
CATEGORIES= multimedia gnome
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/gstreamer/0.8/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= rh@NetBSD.org
|
|
HOMEPAGE= http://www.gstreamer.net/
|
|
COMMENT= GNOME multimedia streamer library
|
|
|
|
BUILD_DEPENDS+= bison-[0-9]*:../../devel/bison
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_BUILDLINK3= yes
|
|
USE_PKGINSTALL= yes
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LIBTOOL= yes
|
|
USE_X11= yes
|
|
USE_GNU_TOOLS+= make
|
|
USE_PERL5= build
|
|
|
|
CONFIGURE_ARGS+= --disable-plugin-builddir
|
|
CONFIGURE_ARGS+= --localstatedir=${PREFIX}/libdata/gstreamer-0.8
|
|
CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc
|
|
CONFIGURE_ENV+= ac_cv_path_PYTHON="${PYTHONBIN}"
|
|
CONFIGURE_ARGS+= HAVE_GTK_DOC=no
|
|
|
|
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-control.pc.in
|
|
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer.pc.in
|
|
|
|
MAKE_DIRS+= ${GST_DBDIR}
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 24 23 22
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "NetBSD"
|
|
# We must have a glib2 compiled with the RTLD_GLOBAL fix; if not, plugins
|
|
# won't work at all.
|
|
BUILDLINK_DEPENDS.glib2+= glib2>=2.4.0nb1
|
|
.endif
|
|
.undef f
|
|
|
|
.include "../../devel/glib2/buildlink3.mk"
|
|
.include "../../devel/libgnomeui/buildlink3.mk"
|
|
.include "../../devel/pkgconfig/buildlink3.mk"
|
|
.include "../../devel/popt/buildlink3.mk"
|
|
.include "../../lang/python/application.mk"
|
|
_GSTREAMER_NO_DEPEND= # defined
|
|
.include "../../multimedia/gstreamer/plugins.mk"
|
|
.include "../../textproc/libxml2/buildlink3.mk"
|
|
.include "../../textproc/libxslt/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|