aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/cpan.bbclass
AgeCommit message (Expand)Author
2015-10-29perl: fix Perl5 module buildsJens Rehsack
2014-08-28cpan.bbclass: matches more linesRobert Yang
2013-07-25cpan.bbclass: Fail unless Makefile.PL generates MakefileOlof Johansson
2013-04-29cpan.bbclass: use '|' as sed separator for entry with pathsMarcin Juszkiewicz
2012-07-16cpan.bbclass: Fix CCFLAGS.Xin Ouyang
2012-06-052011-01-12cpan.bbclass: add a new parameter EXTRA_PERLFLAGSNitin A Kamble
2011-01-12cpan.bbclass: use LIBDIR instead of DATADIRNitin A Kamble
2010-07-22Finally deprecate all legacy do_stage functions. This changes the existing wa...Richard Purdie
2009-11-18perl: Update from OE.dev and convert to use do_install for stagingRichard Purdie
2009-11-16perl: Standardise config.sh locationRichard Purdie
2008-04-01cpan.bbclass: remove bashismsMarcin Juszkiewicz
2008-03-19cpan.bbclass: Fix native staging functions (sync with OE.dev)Richard Purdie
2007-11-12Remove hardcoded staging layout assumptionsRichard Purdie
2007-05-30cpan.bbclass: sync another fix from OE - this time for uclibc modeMarcin Juszkiewicz
2007-05-30cpan classes: sync Perl with OEMarcin Juszkiewicz
2007-05-09cpan.bbclass: Add perl to DEPENDSRichard Purdie
2006-11-20classes: Sync with OE - mainly quoting fixes or other minor updatesRichard Purdie
2006-08-27classes: Sync with OERichard Purdie
2006-07-21Rename /openembedded/ -> /meta/Richard Purdie
> = "https://gstreamer.freedesktop.org/src/gstreamer/gstreamer-${PV}.tar.xz \ file://0001-gst-gstpluginloader.c-when-env-var-is-set-do-not-fal.patch \ file://0002-Remove-unused-valgrind-detection.patch \ file://0003-meson-Add-option-for-installed-tests.patch \ file://0001-gst_private.h-increse-padding-in-struct-_GstClockEnt.patch \ " SRC_URI[sha256sum] = "79df8de21f284a105a5c1568527f8c559c583c85c0f2bd7bdb5b0372b8beecba" PACKAGECONFIG ??= "${@bb.utils.contains('PTEST_ENABLED', '1', 'tests', '', d)} \ check \ debug \ tools" PACKAGECONFIG[debug] = "-Dgst_debug=true,-Dgst_debug=false" PACKAGECONFIG[tracer-hooks] = "-Dtracer_hooks=true,-Dtracer_hooks=false" PACKAGECONFIG[check] = "-Dcheck=enabled,-Dcheck=disabled" PACKAGECONFIG[tests] = "-Dtests=enabled -Dinstalled-tests=true,-Dtests=disabled -Dinstalled-tests=false" PACKAGECONFIG[unwind] = "-Dlibunwind=enabled,-Dlibunwind=disabled,libunwind" PACKAGECONFIG[dw] = "-Dlibdw=enabled,-Dlibdw=disabled,elfutils" PACKAGECONFIG[bash-completion] = "-Dbash-completion=enabled,-Dbash-completion=disabled,bash-completion" PACKAGECONFIG[tools] = "-Dtools=enabled,-Dtools=disabled" PACKAGECONFIG[setcap] = ",,libcap libcap-native" # TODO: put this in a gettext.bbclass patch def gettext_oemeson(d): if d.getVar('USE_NLS') == 'no': return '-Dnls=disabled' # Remove the NLS bits if USE_NLS is no or INHIBIT_DEFAULT_DEPS is set if d.getVar('INHIBIT_DEFAULT_DEPS') and not oe.utils.inherits(d, 'cross-canadian'): return '-Dnls=disabled' return '-Dnls=enabled' EXTRA_OEMESON += " \ -Ddoc=disabled \ -Dexamples=disabled \ -Ddbghelp=disabled \ ${@gettext_oemeson(d)} \ " GIR_MESON_ENABLE_FLAG = "enabled" GIR_MESON_DISABLE_FLAG = "disabled" PACKAGES += "${PN}-bash-completion" # Add the core element plugins to the main package FILES_${PN} += "${libdir}/gstreamer-1.0/*.so" FILES_${PN}-dev += "${libdir}/gstreamer-1.0/*.a ${libdir}/gstreamer-1.0/include" FILES_${PN}-bash-completion += "${datadir}/bash-completion/completions/ ${datadir}/bash-completion/helpers/gst*" FILES_${PN}-dbg += "${datadir}/gdb ${datadir}/gstreamer-1.0/gdb" CVE_PRODUCT = "gstreamer" require gstreamer1.0-ptest.inc