pkgsrc/multimedia/gstreamer0.10/Makefile

76 lines
2.5 KiB
Makefile
Raw Normal View History

2018-08-22 11:43:40 +02:00
# $NetBSD: Makefile,v 1.64 2018/08/22 09:45:49 wiz Exp $
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
DISTNAME= gstreamer-0.10.36
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
PKGNAME= ${DISTNAME:S/gstreamer/gstreamer0.10/}
2018-08-22 11:43:40 +02:00
PKGREVISION= 10
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
CATEGORIES= multimedia gnome
2017-08-16 22:21:03 +02:00
MASTER_SITES= https://gstreamer.freedesktop.org/src/gstreamer/
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
EXTRACT_SUFX= .tar.bz2
MAINTAINER= pkgsrc-users@NetBSD.org
2017-10-17 12:50:38 +02:00
HOMEPAGE= https://gstreamer.freedesktop.org/
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
COMMENT= Open source multimedia framework
GNU_CONFIGURE= yes
USE_PKGLOCALEDIR= yes
USE_LIBTOOL= yes
2007-11-04 17:57:15 +01:00
USE_TOOLS+= bison flex gmake perl pkg-config
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
# queue2 moved from gst-plugins-base to here
CONFLICTS+= gst-plugins0.10-base<0.10.26
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
CONFIGURE_ARGS+= --disable-examples
CONFIGURE_ARGS+= --disable-tests
CONFIGURE_ENV+= ac_cv_path_PYTHON=${TRUE:Q}
CONFIGURE_ENV+= ac_cv_path_XSLTPROC=${TRUE:Q}
2011-11-27 00:02:57 +01:00
FLEX_REQD= 2.5.31
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-base-uninstalled.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-base.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-check-uninstalled.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-check.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-controller-uninstalled.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-controller.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-dataprotocol-uninstalled.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-dataprotocol.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-net-uninstalled.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-net.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer-uninstalled.pc.in
PKGCONFIG_OVERRIDE+= pkgconfig/gstreamer.pc.in
.include "../../mk/bsd.prefs.mk"
2016-02-25 16:49:43 +01:00
CONFIGURE_ENV.FreeBSD+= ac_cv_func_register_printf_function="no"
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
.if ${OPSYS} == "NetBSD"
# We must have a glib2 compiled with the RTLD_GLOBAL fix; if not, plugins
# won't work at all.
BUILDLINK_API_DEPENDS.glib2+= glib2>=2.4.0nb1
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
.endif
PKG_OPTIONS_VAR= PKG_OPTIONS.gstreamer
PKG_SUPPORTED_OPTIONS= gstcheck introspection
PKG_SUGGESTED_OPTIONS= introspection
.include "../../mk/bsd.options.mk"
PLIST_VARS+= gstcheck introspection
.if !empty(PKG_OPTIONS:Mgstcheck)
.include "../../devel/check/buildlink3.mk"
PLIST.gstcheck= yes
# don't worry if the "GstABI" check fails -- GstPlugin contains
# off_t and time_t which are system dependent
TEST_TARGET= check-torture
.else
CONFIGURE_ARGS+= --disable-check
.endif
.if !empty(PKG_OPTIONS:Mintrospection)
PLIST.introspection= yes
.include "../../devel/gobject-introspection/buildlink3.mk"
.else
CONFIGURE_ARGS+= --disable-introspection
.endif
.include "../../devel/glib2/buildlink3.mk"
Initial import of gstreamer0.10, version 0.10.1. This is an update of gstreamer0.8 to the 0.10 series. Changes: Changes since 0.10.0: * element factory leak fixes * tests cleanup * BaseSrc seeking in other format than BYTES * collectpad fixes Bugs fixed since 0.10.0: * 322441 : getcontext() in common/m4/gst-mcsc.m4 uses incorrect stac... * 323041 : [BASESRC] basesrc does not handle a seek to non-bytes for... * 323870 : [tools] gst-feedback needs updating for 0.9/0.10 * 323882 : gst-launch manpage needs updates * 323905 : use return val of g_list_append API added since 0.10.0: * GST_TYPE_STATIC_CAPS * GST_TYPE_STATIC_PAD_TEMPLATE * GstNetTimeProvider::active * gst_base_src_set_format Changes from the 0.8 series to 0.10 series: * Refcounting and API revised for thread safety, see rules in docs/design/part-MT-refcounting.txt * Scheduling is now done by the elements, they start/stop processing threads themselves. This removes the need for a separate scheduler. * State changes now happen from sink to source. This makes sure that downstream elements are ready to process data when upstream starts producing. * EOS/ERROR/... does not change the state of elements anymore. This means that when the application sets the state on an element, it remains in this state. * GMainLoop integration. Information on the state of the pipeline is now received in the mainloop via the GstBus. * Events move separate from the datastream, this allows for both in and out of sync delivery of events. * Generic _pull() replaced by _pull_region() so that random access can be made faster. * data passing happens from PAUSED, called the preroll phase. In this state no data is rendered but it is queued in the sinks. * negotiation simplified. Caps are now attached to buffers and travel along with the datastream. * GstBuffer is now subclassable. * Ghostpads now look and feel like real pads. * New Seeking/flushing policy. * Addition of base classes and helper functions in the core to abstract away the harder parts of plugin development.
2006-01-18 16:35:48 +01:00
.include "../../textproc/libxml2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"