summaryrefslogtreecommitdiff
path: root/multimedia/gstreamer0.10/buildlink3.mk
AgeCommit message (Collapse)AuthorFilesLines
2021-04-21revbump for textproc/icuadam1-2/+2
2020-11-05*: Recursive revbump from textproc/icu-68.1ryoon1-2/+2
2020-06-02Revbump for icuadam1-2/+2
2020-03-08*: recursive bump for libffiwiz1-2/+2
2019-11-03multimedia: align variable assignmentsrillig1-3/+3
pkglint -Wall -F --only aligned --only indent -r No manual corrections.
2018-01-07Fix indentation in buildlink3.mk files.rillig1-3/+3
The actual fix as been done by "pkglint -F */*/buildlink3.mk", and was reviewed manually. There are some .include lines that still are indented with zero spaces although the surrounding .if is indented. This is existing practice.
2012-09-15recursive bump from libffi shlib major bumpobache1-2/+2
(additionaly, reset PKGREVISION of qt4-* sub packages from base qt4 update)
2012-06-14Recursive PKGREVISION bump for libxml2 buildlink addition.sbd1-2/+2
2012-05-07Set BUILDLINK_ABI_DEPENDS correctly (with +=, not ?=)dholland1-2/+2
It turns out there were a lot of these.
2012-03-03Recursive bump for pcre-8.30* (shlib major change)wiz1-2/+2
2012-02-06Revbump forwiz1-2/+2
a) tiff update to 4.0 (shlib major change) b) glib2 update 2.30.2 (adds libffi dependency to buildlink3.mk) Enjoy.
2011-05-16Remove workaround for PR#44108, no need anymore.obache1-8/+1
2011-04-22recursive bump from gettext-lib shlib bump.obache1-2/+2
2010-12-03set GST_REGISTRY_FORK=no on DragonFly.obache1-1/+8
workaround of gst-inspect hung up as PR#44108.
2009-06-14Remove @dirrm related logic.joerg1-4/+1
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2007-05-31The pkgbase parameter for pkg-build-options.mk must match the buildlink3rillig1-3/+3
package name. Otherwise, an error like the following occurs: line 28: warning: "/usr/sbin/pkg_info -K /var/db/pkg -Q PKG_OPTIONS \ gstreamer 2>/dev/null || { cd && ...
2007-05-30Removed some code duplication from the buildlink3 files by using the newrillig1-6/+3
pkg-build-options.mk procedure.
2007-02-08add a "gstcheck" option which makes that the "check" library is pulled indrochner1-1/+11
and an additional library library gets built which can be used for selftests of gstreamer and plugins not enabled per default
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-04-12Aligned the last line of the buildlink3.mk files with the first line, sorillig1-2/+2
that they look nicer.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-1/+2
2006-01-18Initial import of gstreamer0.10, version 0.10.1. This is an update ofjmmv1-0/+24
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.