aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/btrfs-tools
AgeCommit message (Expand)Author
2016-03-06btrfs-tools: Add libgcc to RDEPENDSRobert Joslyn
2016-02-28btrfs-tools: fix symlink creation multiple timesHongxu Jia
2016-01-26btrfs-tools: Disable backtrace on muslKhem Raj
2016-01-19btrfs-tools: update to 4.4Alexander Kanavin
2015-12-27btrfs-tools: update to 4.3.1Alexander Kanavin
2015-08-30btrfs-tools: 4.1.1 -> 4.1.2Robert Yang
2015-07-20btrfs-tools: 4.0.1 -> 4.1.1Robert Yang
2015-06-03btrfs-tools: 3.18.2 -> 4.0.12012-01-17btrfs-tools: upgrade to newer git commitNitin A Kamble
2012-01-03btrfs-tools:Fix multithreaded buildingNitin A Kamble
2012-01-03btrfs-tools: add attr as dependency to fix compilationNitin A Kamble
2011-11-17btrfs-tools: update to the latest git commitNitin A Kamble
2011-07-22fix Upstream-Status line for few patchesNitin A Kamble
2011-07-20btrfs-tools: Add util-linux to DEPENDSTom Rini
2011-07-05btrfs-tools: Fix manpage creation directoryRichard Purdie
2011-06-30btrfs-tools: new recipe for tools to operate on btrfs imagesNitin A Kamble
pan class="kr">for ghostscript-native EXTRA_OECONF_class-native = "--without-x --with-system-libtiff=no \ --without-jbig2dec \ --with-fontpath=${datadir}/fonts \ --without-libidn --disable-fontconfig \ --disable-freetype --disable-cups" # This has been fixed upstream but for now we need to subvert the check for time.h # http://bugs.ghostscript.com/show_bug.cgi?id=692443 # http://bugs.ghostscript.com/show_bug.cgi?id=692426 CFLAGS += "-DHAVE_SYS_TIME_H=1" BUILD_CFLAGS += "-DHAVE_SYS_TIME_H=1" inherit autotools do_configure_prepend () { mkdir -p obj mkdir -p soobj if [ -e ${WORKDIR}/objarch.h ]; then cp ${WORKDIR}/objarch.h obj/arch.h fi } do_configure_append () { # copy tools from the native ghostscript build if [ "${PN}" != "ghostscript-native" ]; then mkdir -p obj/aux soobj for i in genarch genconf mkromfs echogs gendev genht; do cp ${STAGING_BINDIR_NATIVE}/ghostscript-${PV}/$i obj/aux/$i done fi } do_install_append () { mkdir -p ${D}${datadir}/ghostscript/${PV}/ cp -r ${S}/Resource ${D}${datadir}/ghostscript/${PV}/ cp -r ${S}/iccprofiles ${D}${datadir}/ghostscript/${PV}/ } do_compile_class-native () { mkdir -p obj for i in genarch genconf mkromfs echogs gendev genht; do oe_runmake obj/aux/$i done } do_install_class-native () { install -d ${D}${bindir}/ghostscript-${PV} for i in genarch genconf mkromfs echogs gendev genht; do install -m 755 obj/aux/$i ${D}${bindir}/ghostscript-${PV}/$i done } BBCLASSEXTEND = "native" # Ghostscript install tool 'instcopy' tries to remove already created # directories during install and parallel make causes problems. PARALLEL_MAKEINST=""