mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-04-20 11:38:34 +00:00
recipes: Unify indentation
* This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
This commit is contained in:
@@ -17,7 +17,7 @@ inherit e-base autotools pkgconfig distutils-base
|
||||
SRCVER = "${PV}"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/BINDINGS/python/${SRCNAME}-${SRCVER}.tar.bz2 \
|
||||
${E_MIRROR}/BINDINGS/python/${SRCNAME}-${SRCVER}.tar.bz2 \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}-${SRCVER}"
|
||||
|
||||
|
||||
@@ -17,16 +17,16 @@ SRC_URI = "git://github.com/shr-project/e-tasks.git;protocol=git;branch=master \
|
||||
S = "${WORKDIR}/git"
|
||||
|
||||
do_install_append() {
|
||||
install -d "${D}/${datadir}/pixmaps"
|
||||
install -m 0644 "${S}/resources/e-tasks.png" "${D}/${datadir}/pixmaps"
|
||||
install -d "${D}/${datadir}/applications"
|
||||
install -m 0644 "${S}/resources/e-tasks.desktop" "${D}/${datadir}/applications"
|
||||
install -d "${D}/${datadir}/e-tasks"
|
||||
for ico in "${S}/resources/"*.png; do
|
||||
if [ "$(basename $ico)" != "e-tasks.png" ]; then
|
||||
install -m 0644 $ico "${D}/${datadir}/e-tasks"
|
||||
fi
|
||||
done
|
||||
install -d "${D}/${datadir}/pixmaps"
|
||||
install -m 0644 "${S}/resources/e-tasks.png" "${D}/${datadir}/pixmaps"
|
||||
install -d "${D}/${datadir}/applications"
|
||||
install -m 0644 "${S}/resources/e-tasks.desktop" "${D}/${datadir}/applications"
|
||||
install -d "${D}/${datadir}/e-tasks"
|
||||
for ico in "${S}/resources/"*.png; do
|
||||
if [ "$(basename $ico)" != "e-tasks.png" ]; then
|
||||
install -m 0644 $ico "${D}/${datadir}/e-tasks"
|
||||
fi
|
||||
done
|
||||
}
|
||||
|
||||
FILES_${PN} += "/usr/share/e-tasks/* /usr/share/applications/* /usr/share/pixmaps/*"
|
||||
|
||||
@@ -18,14 +18,14 @@ SRC_URI = "${E_SVN}/trunk/THEMES;module=${SRCNAME};protocol=http"
|
||||
S = "${WORKDIR}/${SRCNAME}/e"
|
||||
|
||||
do_compile() {
|
||||
# unfortunately hardcoded edje_cc in Makefile
|
||||
sed -i "s#\tedje_cc#\t${STAGING_BINDIR_NATIVE}/edje_cc#g" Makefile
|
||||
make
|
||||
# unfortunately hardcoded edje_cc in Makefile
|
||||
sed -i "s#\tedje_cc#\t${STAGING_BINDIR_NATIVE}/edje_cc#g" Makefile
|
||||
make
|
||||
}
|
||||
|
||||
do_install() {
|
||||
install -d ${D}${datadir}/enlightenment/data/themes/
|
||||
install -m 0644 ${S}/b_and_w.edj ${D}${datadir}/enlightenment/data/themes/
|
||||
install -d ${D}${datadir}/enlightenment/data/themes/
|
||||
install -m 0644 ${S}/b_and_w.edj ${D}${datadir}/enlightenment/data/themes/
|
||||
}
|
||||
|
||||
FILES_${PN} = "${datadir}/enlightenment/data/themes/"
|
||||
|
||||
@@ -9,11 +9,11 @@ inherit e update-alternatives gettext
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
|
||||
--x-includes=${STAGING_INCDIR}/X11 \
|
||||
--x-libraries=${STAGING_LIBDIR} \
|
||||
--enable-simple-x11 \
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
|
||||
--x-includes=${STAGING_INCDIR}/X11 \
|
||||
--x-libraries=${STAGING_LIBDIR} \
|
||||
--enable-simple-x11 \
|
||||
"
|
||||
|
||||
do_configure_prepend() {
|
||||
@@ -52,16 +52,16 @@ do_install_append() {
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += "\
|
||||
shared-mime-info \
|
||||
mime-support \
|
||||
setxkbmap \
|
||||
edje-utils \
|
||||
${PN}-utils \
|
||||
dbus-x11 \
|
||||
evas-loader-png \
|
||||
evas-loader-jpeg \
|
||||
evas-loader-gif \
|
||||
evas-generic-loader-svg \
|
||||
shared-mime-info \
|
||||
mime-support \
|
||||
setxkbmap \
|
||||
edje-utils \
|
||||
${PN}-utils \
|
||||
dbus-x11 \
|
||||
evas-loader-png \
|
||||
evas-loader-jpeg \
|
||||
evas-loader-gif \
|
||||
evas-generic-loader-svg \
|
||||
"
|
||||
|
||||
# Uclibc build don't have 'glibc-utils'
|
||||
@@ -75,57 +75,57 @@ RCONFLICTS_${PN}-config-mobile = "${PN}-config-illume2"
|
||||
RPROVIDES_${PN}-config-mobile = "${PN}-config-illume2"
|
||||
|
||||
PACKAGES =+ "\
|
||||
${PN}-config-default \
|
||||
${PN}-config-mobile \
|
||||
${PN}-config-minimalist \
|
||||
${PN}-config-netbook \
|
||||
${PN}-config-scaleable \
|
||||
${PN}-config-standard \
|
||||
${PN}-theme-default \
|
||||
${PN}-background-dark-gradient \
|
||||
${PN}-background-light-gradient \
|
||||
${PN}-backgrounds \
|
||||
${PN}-images \
|
||||
${PN}-icons \
|
||||
${PN}-other \
|
||||
${PN}-input-methods \
|
||||
${PN}-sysactions \
|
||||
${PN}-utils \
|
||||
${PN}-menu \
|
||||
efm-desktop-icon \
|
||||
illume-keyboard-default-alpha \
|
||||
illume-keyboard-default-numeric \
|
||||
illume-keyboard-default-terminal \
|
||||
${PN}-config-default \
|
||||
${PN}-config-mobile \
|
||||
${PN}-config-minimalist \
|
||||
${PN}-config-netbook \
|
||||
${PN}-config-scaleable \
|
||||
${PN}-config-standard \
|
||||
${PN}-theme-default \
|
||||
${PN}-background-dark-gradient \
|
||||
${PN}-background-light-gradient \
|
||||
${PN}-backgrounds \
|
||||
${PN}-images \
|
||||
${PN}-icons \
|
||||
${PN}-other \
|
||||
${PN}-input-methods \
|
||||
${PN}-sysactions \
|
||||
${PN}-utils \
|
||||
${PN}-menu \
|
||||
efm-desktop-icon \
|
||||
illume-keyboard-default-alpha \
|
||||
illume-keyboard-default-numeric \
|
||||
illume-keyboard-default-terminal \
|
||||
"
|
||||
|
||||
ESYSACTIONS ?= "${PN}-sysactions"
|
||||
|
||||
RRECOMMENDS_${PN} = "\
|
||||
${PN}-config-default \
|
||||
${PN}-images \
|
||||
${PN}-icons \
|
||||
${PN}-other \
|
||||
${PN}-input-methods \
|
||||
${ESYSACTIONS} \
|
||||
${PN}-config-default \
|
||||
${PN}-images \
|
||||
${PN}-icons \
|
||||
${PN}-other \
|
||||
${PN}-input-methods \
|
||||
${ESYSACTIONS} \
|
||||
"
|
||||
|
||||
FILES_${PN} = "\
|
||||
${bindir}/* \
|
||||
${libdir}/enlightenment/utils/* \
|
||||
${libdir}/enlightenment/modules/*/*.* \
|
||||
${libdir}/enlightenment/modules/*/*/* \
|
||||
${libdir}/enlightenment/modules/*/*/.order \
|
||||
${libdir}/enlightenment/modules/keyboards/ignore_built_in_keyboards \
|
||||
${libdir}/enlightenment/*plugins/*/*/* \
|
||||
${libdir}/enlightenment/preload/e_precache.so \
|
||||
${datadir}/enlightenment/data/icons \
|
||||
${datadir}/enlightenment/data/favorites \
|
||||
${datadir}/enlightenment/data/input_methods \
|
||||
${datadir}/enlightenment/data/config/profile.cfg \
|
||||
${datadir}/enlightenment/AUTHORS \
|
||||
${datadir}/enlightenment/COPYING \
|
||||
${datadir}/xsessions/enlightenment.desktop \
|
||||
${sysconfdir}/xdg \
|
||||
${bindir}/* \
|
||||
${libdir}/enlightenment/utils/* \
|
||||
${libdir}/enlightenment/modules/*/*.* \
|
||||
${libdir}/enlightenment/modules/*/*/* \
|
||||
${libdir}/enlightenment/modules/*/*/.order \
|
||||
${libdir}/enlightenment/modules/keyboards/ignore_built_in_keyboards \
|
||||
${libdir}/enlightenment/*plugins/*/*/* \
|
||||
${libdir}/enlightenment/preload/e_precache.so \
|
||||
${datadir}/enlightenment/data/icons \
|
||||
${datadir}/enlightenment/data/favorites \
|
||||
${datadir}/enlightenment/data/input_methods \
|
||||
${datadir}/enlightenment/data/config/profile.cfg \
|
||||
${datadir}/enlightenment/AUTHORS \
|
||||
${datadir}/enlightenment/COPYING \
|
||||
${datadir}/xsessions/enlightenment.desktop \
|
||||
${sysconfdir}/xdg \
|
||||
"
|
||||
|
||||
FILES_${PN}-config-default = "${datadir}/enlightenment/data/config/default"
|
||||
@@ -148,53 +148,53 @@ FILES_${PN}-utils = "${libdir}/enlightenment/utils/*"
|
||||
FILES_${PN}-menu = "${sysconfdir}/xdg/menus/applications.menu"
|
||||
|
||||
FILES_efm-desktop-icon = "\
|
||||
${datadir}/applications/efm.desktop \
|
||||
${datadir}/applications/enlightenment_filemanager.desktop \
|
||||
${datadir}/icons/e-module-fileman.png \
|
||||
${datadir}/applications/efm.desktop \
|
||||
${datadir}/applications/enlightenment_filemanager.desktop \
|
||||
${datadir}/icons/e-module-fileman.png \
|
||||
"
|
||||
|
||||
KEYBOARDS_DIR="${libdir}/enlightenment/modules/illume-keyboard/keyboards"
|
||||
FILES_illume-keyboard-default-alpha = "\
|
||||
${KEYBOARDS_DIR}/Default.kbd \
|
||||
${KEYBOARDS_DIR}/alpha.png \
|
||||
${KEYBOARDS_DIR}/Default.kbd \
|
||||
${KEYBOARDS_DIR}/alpha.png \
|
||||
"
|
||||
FILES_illume-keyboard-default-numeric = "\
|
||||
${KEYBOARDS_DIR}/Numbers.kbd \
|
||||
${KEYBOARDS_DIR}/numeric.png \
|
||||
${KEYBOARDS_DIR}/Numbers.kbd \
|
||||
${KEYBOARDS_DIR}/numeric.png \
|
||||
"
|
||||
FILES_illume-keyboard-default-terminal = "\
|
||||
${KEYBOARDS_DIR}/Terminal.kbd \
|
||||
${KEYBOARDS_DIR}/qwerty.png \
|
||||
${KEYBOARDS_DIR}/Terminal.kbd \
|
||||
${KEYBOARDS_DIR}/qwerty.png \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN}-config-default = "${PN}-theme-default"
|
||||
RRECOMMENDS_${PN}-config-mobile = "\
|
||||
illume-keyboard-default-alpha \
|
||||
illume-keyboard-default-numeric \
|
||||
illume-keyboard-default-terminal \
|
||||
illume-keyboard-default-alpha \
|
||||
illume-keyboard-default-numeric \
|
||||
illume-keyboard-default-terminal \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN}-config-minimalist = "\
|
||||
${PN}-background-light-gradient \
|
||||
${PN}-theme-default \
|
||||
${PN}-background-light-gradient \
|
||||
${PN}-theme-default \
|
||||
"
|
||||
RRECOMMENDS_${PN}-config-netbook = "\
|
||||
${PN}-background-dark-gradient \
|
||||
${PN}-theme-default \
|
||||
${PN}-background-dark-gradient \
|
||||
${PN}-theme-default \
|
||||
"
|
||||
RRECOMMENDS_${PN}-config-scaleable = "${PN}-theme-default"
|
||||
RRECOMMENDS_${PN}-config-standard = "${PN}-theme-default"
|
||||
|
||||
FILES_${PN}-dbg += "\
|
||||
${libdir}/enlightenment/modules/*/*/.debug/ \
|
||||
${libdir}/enlightenment/modules/policies/.debug/ \
|
||||
${libdir}/enlightenment/preload/.debug/ \
|
||||
${libdir}/enlightenment/utils/.debug/ \
|
||||
${libdir}/enlightenment/*plugins/*/*/.debug \
|
||||
${libdir}/enlightenment/modules/*/*/.debug/ \
|
||||
${libdir}/enlightenment/modules/policies/.debug/ \
|
||||
${libdir}/enlightenment/preload/.debug/ \
|
||||
${libdir}/enlightenment/utils/.debug/ \
|
||||
${libdir}/enlightenment/*plugins/*/*/.debug \
|
||||
"
|
||||
|
||||
FILES_${PN}-doc += "\
|
||||
${datadir}/enlightenment/doc \
|
||||
${datadir}/enlightenment/doc \
|
||||
"
|
||||
|
||||
CONFFILES_${PN}-menu = "${sysconfdir}/xdg/menus/applications.menu"
|
||||
|
||||
@@ -7,9 +7,9 @@ SRCNAME = "enlightenment"
|
||||
S = "${WORKDIR}/${SRCNAME}-${PV}"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
file://enlightenment_start.oe \
|
||||
file://applications.menu \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
file://enlightenment_start.oe \
|
||||
file://applications.menu \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "e78018ba7a4622efbcbebd6d093b7fa4"
|
||||
|
||||
@@ -10,7 +10,7 @@ SRCREV = "${EFL_SRCREV}"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/trunk;module=${SRCNAME};protocol=http \
|
||||
file://enlightenment_start.oe \
|
||||
file://applications.menu \
|
||||
${E_SVN}/trunk;module=${SRCNAME};protocol=http \
|
||||
file://enlightenment_start.oe \
|
||||
file://applications.menu \
|
||||
"
|
||||
|
||||
@@ -19,5 +19,5 @@ SRCREV = "${EFL_SRCREV}"
|
||||
RDEPENDS_${PN} = "${PN}-themes"
|
||||
|
||||
do_configure_prepend() {
|
||||
autopoint --force
|
||||
autopoint --force
|
||||
}
|
||||
|
||||
@@ -18,12 +18,12 @@ RDEPENDS_${PN} += "\
|
||||
gst-plugins-base-ogg gst-plugins-base-ivorbisdec \
|
||||
gst-plugins-good-flac \
|
||||
lightmediascanner-test \
|
||||
"
|
||||
"
|
||||
|
||||
inherit e gettext
|
||||
SRC_URI = " \
|
||||
${E_SVN}/trunk;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
file://0001-always-use-position-as-percent-and-define-a-1-second.patch \
|
||||
${E_SVN}/trunk;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
file://0001-always-use-position-as-percent-and-define-a-1-second.patch \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -32,11 +32,11 @@ PR = "r1"
|
||||
FILES_${PN} += "${datadir}/icons/"
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
"
|
||||
|
||||
do_configure_prepend() {
|
||||
autopoint || touch config.rpath
|
||||
autopoint || touch config.rpath
|
||||
}
|
||||
|
||||
pkg_postinst_${PN} () {
|
||||
|
||||
@@ -10,16 +10,16 @@ SRC_URI = "${E_SVN}/trunk;module=${SRCNAME};protocol=http;scmdata=keep"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
do_configure_prepend() {
|
||||
autopoint || touch config.rpath
|
||||
autopoint || touch config.rpath
|
||||
}
|
||||
|
||||
SRC_URI += "file://eve-theme-for-smaller-screens.patch \
|
||||
"
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
"
|
||||
|
||||
FILES_${PN} += "\
|
||||
${datadir}/icons/eve.png \
|
||||
${datadir}/icons/eve.png \
|
||||
"
|
||||
|
||||
@@ -21,7 +21,7 @@ SRC_URI = "${E_SVN}/trunk/THEMES;module=${SRCNAME};protocol=http \
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
do_compile() {
|
||||
${STAGING_BINDIR_NATIVE}/edje_cc exquisite.edc illume.edj
|
||||
${STAGING_BINDIR_NATIVE}/edje_cc exquisite.edc illume.edj
|
||||
}
|
||||
|
||||
do_install() {
|
||||
|
||||
@@ -21,18 +21,18 @@ SRC_URI += "file://splashfuncs"
|
||||
inherit update-rc.d
|
||||
|
||||
do_install_prepend() {
|
||||
install -d ${D}/mnt/.splash/
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/exquisite-init ${D}${sysconfdir}/init.d/exquisite
|
||||
install -d ${D}${sysconfdir}/default
|
||||
install -m 0755 ${WORKDIR}/splashfuncs ${D}${sysconfdir}/default/splashfuncs
|
||||
install -d ${D}${bindir}
|
||||
ln -s exquisite-write ${D}${bindir}/splash-write
|
||||
install -d ${D}/mnt/.splash/
|
||||
install -d ${D}${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/exquisite-init ${D}${sysconfdir}/init.d/exquisite
|
||||
install -d ${D}${sysconfdir}/default
|
||||
install -m 0755 ${WORKDIR}/splashfuncs ${D}${sysconfdir}/default/splashfuncs
|
||||
install -d ${D}${bindir}
|
||||
ln -s exquisite-write ${D}${bindir}/splash-write
|
||||
}
|
||||
|
||||
|
||||
do_install_append() {
|
||||
rm -rf ${D}${datadir}/exquisite/data/fonts/*
|
||||
rm -rf ${D}${datadir}/exquisite/data/fonts/*
|
||||
}
|
||||
|
||||
INITSCRIPT_NAME = "exquisite"
|
||||
|
||||
@@ -10,11 +10,11 @@ INC_PR = "r2"
|
||||
PE = "2"
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
"
|
||||
|
||||
FILES_${PN} += "\
|
||||
${datadir}/icons/terminology.png \
|
||||
${datadir}/icons/terminology.png \
|
||||
"
|
||||
|
||||
# doesn't start without own theme
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "7cecd058cb4509873412252477f2ce5b"
|
||||
|
||||
@@ -15,14 +15,14 @@ BBCLASSEXTEND = "native"
|
||||
EXTRA_OECONF += " --disable-mysql-tests"
|
||||
|
||||
do_configure_prepend_class-target() {
|
||||
sed -i "s#\./lemon#${STAGING_BINDIR_NATIVE}/azy_lemon#g" ${S}/src/bin/Makefile.am
|
||||
sed -i "s#\$(top_builddir)/src/bin/azy_parser -H -p -o#${STAGING_BINDIR_NATIVE}/azy_parser -H -p -o#g" ${S}/src/tests/Makefile.am
|
||||
sed -i "s#\$(top_builddir)/src/bin/azy_parser -eHn -m#${STAGING_BINDIR_NATIVE}/azy_parser -eHn -m#g" ${S}/src/tests/identi.ca/Makefile.am
|
||||
sed -i "s#\./lemon#${STAGING_BINDIR_NATIVE}/azy_lemon#g" ${S}/src/bin/Makefile.am
|
||||
sed -i "s#\$(top_builddir)/src/bin/azy_parser -H -p -o#${STAGING_BINDIR_NATIVE}/azy_parser -H -p -o#g" ${S}/src/tests/Makefile.am
|
||||
sed -i "s#\$(top_builddir)/src/bin/azy_parser -eHn -m#${STAGING_BINDIR_NATIVE}/azy_parser -eHn -m#g" ${S}/src/tests/identi.ca/Makefile.am
|
||||
}
|
||||
|
||||
do_install_append_class-native() {
|
||||
install -d ${D}/${bindir}
|
||||
install -m 0755 ${S}/src/bin/lemon ${D}/${bindir}/azy_lemon
|
||||
install -d ${D}/${bindir}
|
||||
install -m 0755 ${S}/src/bin/lemon ${D}/${bindir}/azy_lemon
|
||||
}
|
||||
|
||||
inherit efl
|
||||
|
||||
@@ -35,12 +35,12 @@ PACKAGES =+ "\
|
||||
${PN}-txt \
|
||||
${PN}-x \
|
||||
${PN}-input \
|
||||
"
|
||||
"
|
||||
# Some upgrade path tweaking
|
||||
AUTO_LIBNAME_PKGS = ""
|
||||
|
||||
FILES_${PN} = "${libdir}/libecore*.so.* \
|
||||
${bindir} \
|
||||
${bindir} \
|
||||
"
|
||||
FILES_${PN}-con = "${libdir}/libecore_con*.so.*"
|
||||
FILES_${PN}-config = "${libdir}/libecore_config*.so.*"
|
||||
@@ -51,7 +51,7 @@ FILES_${PN}-evas = "${libdir}/libecore_evas*.so.*"
|
||||
FILES_${PN}-fb = "${libdir}/libecore_fb*.so.*"
|
||||
FILES_${PN}-file = "${libdir}/libecore_file*.so.*"
|
||||
FILES_${PN}-imf = "${libdir}/libecore_imf*.so.* \
|
||||
${libdir}/ecore/immodules/*.so \
|
||||
${libdir}/ecore/immodules/*.so \
|
||||
"
|
||||
FILES_${PN}-imf-evas = "${libdir}/libecore_imf_evas*.so.*"
|
||||
FILES_${PN}-ipc = "${libdir}/libecore_ipc*.so.*"
|
||||
@@ -61,32 +61,32 @@ FILES_${PN}-x = "${libdir}/libecore_x*.so.*"
|
||||
FILES_${PN}-input = "${libdir}/libecore_input*.so.*"
|
||||
|
||||
ECORE_OECONF = "\
|
||||
--x-includes=${STAGING_INCDIR}/X11 \
|
||||
--x-libraries=${STAGING_LIBDIR} \
|
||||
--enable-simple-x11 \
|
||||
--enable-ecore-config \
|
||||
--enable-ecore-x \
|
||||
--enable-ecore-job \
|
||||
--enable-ecore-fb \
|
||||
--enable-ecore-evas \
|
||||
--enable-ecore-evas-software-16-x11 \
|
||||
--enable-ecore-evas-xrender \
|
||||
--enable-abstract-sockets \
|
||||
--enable-ecore-con \
|
||||
--enable-ecore-ipc \
|
||||
--enable-ecore-file \
|
||||
--enable-inotify \
|
||||
--disable-ecore-desktop \
|
||||
--disable-ecore-x-xcb \
|
||||
--disable-ecore-x-xprint \
|
||||
--disable-ecore-directfb \
|
||||
--disable-ecore-sdl \
|
||||
--enable-ecore-evas-opengl-x11 \
|
||||
--disable-ecore-evas-dfb \
|
||||
--disable-ecore-evas-sdl \
|
||||
--disable-openssl \
|
||||
--disable-poll \
|
||||
--enable-xim \
|
||||
--x-includes=${STAGING_INCDIR}/X11 \
|
||||
--x-libraries=${STAGING_LIBDIR} \
|
||||
--enable-simple-x11 \
|
||||
--enable-ecore-config \
|
||||
--enable-ecore-x \
|
||||
--enable-ecore-job \
|
||||
--enable-ecore-fb \
|
||||
--enable-ecore-evas \
|
||||
--enable-ecore-evas-software-16-x11 \
|
||||
--enable-ecore-evas-xrender \
|
||||
--enable-abstract-sockets \
|
||||
--enable-ecore-con \
|
||||
--enable-ecore-ipc \
|
||||
--enable-ecore-file \
|
||||
--enable-inotify \
|
||||
--disable-ecore-desktop \
|
||||
--disable-ecore-x-xcb \
|
||||
--disable-ecore-x-xprint \
|
||||
--disable-ecore-directfb \
|
||||
--disable-ecore-sdl \
|
||||
--enable-ecore-evas-opengl-x11 \
|
||||
--disable-ecore-evas-dfb \
|
||||
--disable-ecore-evas-sdl \
|
||||
--disable-openssl \
|
||||
--disable-poll \
|
||||
--enable-xim \
|
||||
"
|
||||
|
||||
EXTRA_OECONF = "${ECORE_OECONF} \
|
||||
|
||||
@@ -3,8 +3,8 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
file://fix-ecore-fb-initialization.patch \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
file://fix-ecore-fb-initialization.patch \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "a41828b5b4ca42283d8658c0fe54db07"
|
||||
|
||||
@@ -8,7 +8,7 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
file://fix-ecore-fb-initialization.patch \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
file://fix-ecore-fb-initialization.patch \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -6,7 +6,7 @@ PR = "${INC_PR}.2"
|
||||
DEFAULT_PREFERENCE = "-1"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/trunk/IN-EFL;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/trunk/IN-EFL;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "3b4694a1b7c8f635effb225fe4c1f43d"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -44,9 +44,9 @@ PACKAGES =+ "${PN}-utils"
|
||||
RDEPENDS_${PN}-utils = "cpp cpp-symlinks embryo-tests"
|
||||
|
||||
RRECOMMENDS_${PN}-utils = "\
|
||||
evas-saver-png \
|
||||
evas-saver-jpeg \
|
||||
evas-saver-eet \
|
||||
evas-saver-png \
|
||||
evas-saver-jpeg \
|
||||
evas-saver-eet \
|
||||
"
|
||||
|
||||
DEBIAN_NOAUTONAME_${PN}-utils = "1"
|
||||
@@ -54,10 +54,10 @@ DEBIAN_NOAUTONAME_${PN}-utils = "1"
|
||||
AUTO_LIBNAME_PKGS = ""
|
||||
|
||||
FILES_${PN}-utils = "\
|
||||
${bindir}/edje_* \
|
||||
${bindir}/inkscape2edc \
|
||||
${libdir}/edje/utils/epp \
|
||||
${datadir}/edje/include/edje.inc \
|
||||
${bindir}/edje_* \
|
||||
${bindir}/inkscape2edc \
|
||||
${libdir}/edje/utils/epp \
|
||||
${datadir}/edje/include/edje.inc \
|
||||
"
|
||||
|
||||
FILES_${PN} += "${libdir}/${PN}/modules/*/*/module.so \
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "2fa9079a1c53efebad47dccf6cb3a62c"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -9,16 +9,16 @@ BBCLASSEXTEND = "native"
|
||||
INC_PR = "r0"
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--enable-openssl \
|
||||
--enable-cypher \
|
||||
--enable-signature \
|
||||
--disable-coverage \
|
||||
--enable-old-eet-file-format \
|
||||
--disable-assert \
|
||||
--enable-openssl \
|
||||
--enable-cypher \
|
||||
--enable-signature \
|
||||
--disable-coverage \
|
||||
--enable-old-eet-file-format \
|
||||
--disable-assert \
|
||||
"
|
||||
|
||||
PACKAGES =+ "${PN}-utils"
|
||||
|
||||
FILES_${PN}-utils = "\
|
||||
${bindir}/${PN} \
|
||||
${bindir}/${PN} \
|
||||
"
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "16a3b3cffbc7d63a5efdd673793e4a7a"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "8e23ead15f9f52df5ffd05560153756f"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "3888d88fcbf50e8977fc9f198facee8e"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "4f0075f404223284dac0f34f676c511e"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "c180817c536822153a1853b74a96d01a"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -8,63 +8,63 @@ inherit efl gettext
|
||||
INC_PR = "r0"
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
|
||||
--disable-web \
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
|
||||
--disable-web \
|
||||
"
|
||||
|
||||
do_compile_append() {
|
||||
sed -i -e s:${STAGING_DIR_TARGET}::g \
|
||||
-e s:/${TARGET_SYS}::g \
|
||||
elementary.pc
|
||||
sed -i -e s:${STAGING_DIR_TARGET}::g \
|
||||
-e s:/${TARGET_SYS}::g \
|
||||
elementary.pc
|
||||
}
|
||||
|
||||
PACKAGES += "${PN}-configs ${PN}-accessibility"
|
||||
|
||||
RDEPENDS_${PN} = "\
|
||||
${PN}-themes \
|
||||
${PN}-configs \
|
||||
${PN}-themes \
|
||||
${PN}-configs \
|
||||
"
|
||||
RSUGGESTS_${PN} = "${PN}-tests ${PN}-accessibility"
|
||||
|
||||
FILES_${PN} += "\
|
||||
${libdir}/edje/modules/elm \
|
||||
${libdir}/elementary/modules/datetime_input_ctxpopup/*/module.so \
|
||||
${libdir}/edje/modules/elm \
|
||||
${libdir}/elementary/modules/datetime_input_ctxpopup/*/module.so \
|
||||
"
|
||||
|
||||
FILES_${PN}-dev += "\
|
||||
${libdir}/elementary/modules/datetime_input_ctxpopup/*/module.la \
|
||||
${libdir}/elementary/modules/datetime_input_ctxpopup/*/module.la \
|
||||
"
|
||||
|
||||
FILES_${PN}-themes = "\
|
||||
${datadir}/elementary/themes \
|
||||
${datadir}/elementary/themes \
|
||||
"
|
||||
|
||||
FILES_${PN}-configs = "\
|
||||
${datadir}/elementary/config \
|
||||
${datadir}/elementary/config \
|
||||
"
|
||||
|
||||
FILES_${PN}-dbg += "\
|
||||
${libdir}/elementary/modules/test_entry/*/.debug \
|
||||
${libdir}/elementary/modules/test_map/*/.debug \
|
||||
${libdir}/elementary/modules/access_output/*/.debug \
|
||||
${libdir}/elementary/modules/datetime_input_ctxpopup/*/.debug \
|
||||
${libdir}/edje/modules/elm/*/.debug \
|
||||
${libdir}/elementary/modules/test_entry/*/.debug \
|
||||
${libdir}/elementary/modules/test_map/*/.debug \
|
||||
${libdir}/elementary/modules/access_output/*/.debug \
|
||||
${libdir}/elementary/modules/datetime_input_ctxpopup/*/.debug \
|
||||
${libdir}/edje/modules/elm/*/.debug \
|
||||
"
|
||||
|
||||
FILES_${PN}-tests = "\
|
||||
${bindir}/elementary* \
|
||||
${datadir}/elementary/images \
|
||||
${datadir}/elementary/objects \
|
||||
${datadir}/elementary/examples \
|
||||
${datadir}/applications/* \
|
||||
${datadir}/icons/* \
|
||||
${libdir}/elementary/modules/test_entry/* \
|
||||
${libdir}/elementary/modules/test_map/* \
|
||||
${bindir}/elementary* \
|
||||
${datadir}/elementary/images \
|
||||
${datadir}/elementary/objects \
|
||||
${datadir}/elementary/examples \
|
||||
${datadir}/applications/* \
|
||||
${datadir}/icons/* \
|
||||
${libdir}/elementary/modules/test_entry/* \
|
||||
${libdir}/elementary/modules/test_map/* \
|
||||
"
|
||||
|
||||
FILES_${PN}-accessibility = "\
|
||||
${libdir}/elementary/modules/access_output/* \
|
||||
${libdir}/elementary/modules/access_output/* \
|
||||
"
|
||||
|
||||
# Some upgrade path tweaking, as in evas
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "48f28d887432f9aca434c864de33d5f8"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "6302e1845d50074a949d8d822e2c8874"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "eb15b6faa1e4a30f80622a1381c670fc"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -6,8 +6,8 @@ SECTION = "e/apps"
|
||||
|
||||
inherit e gettext systemd
|
||||
SRC_URI = "${E_SVN}/trunk/PROTO;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
file://0001-pam-use-common-auth-instead-of-system-auth.patch \
|
||||
file://entrance.service \
|
||||
file://0001-pam-use-common-auth-instead-of-system-auth.patch \
|
||||
file://entrance.service \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -33,6 +33,6 @@ RCONFLICTS_${PN} += "${PN}-systemd"
|
||||
SYSTEMD_SERVICE_${PN} = "entrance.service"
|
||||
|
||||
do_install_append() {
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
install -m 0644 ${WORKDIR}/entrance.service ${D}${systemd_unitdir}/system
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
install -m 0644 ${WORKDIR}/entrance.service ${D}${systemd_unitdir}/system
|
||||
}
|
||||
|
||||
@@ -8,9 +8,9 @@ INC_PR = "r0"
|
||||
inherit efl
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
|
||||
--disable-docs \
|
||||
--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc \
|
||||
--with-eet-eet=${STAGING_BINDIR_NATIVE}/eet \
|
||||
--disable-docs \
|
||||
"
|
||||
|
||||
# Some upgrade path tweaking, as in evas
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "343ef0dfda62295db353b7dca059e4a7"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -10,11 +10,11 @@ INC_PR = "r0"
|
||||
SRCNAME = "evas_generic_loaders"
|
||||
|
||||
EXTRA_OECONF = " \
|
||||
--enable-poppler \
|
||||
--enable-svg \
|
||||
--disable-gstreamer \
|
||||
--disable-libraw \
|
||||
--disable-spectre \
|
||||
--enable-poppler \
|
||||
--enable-svg \
|
||||
--disable-gstreamer \
|
||||
--disable-libraw \
|
||||
--disable-spectre \
|
||||
"
|
||||
|
||||
python populate_packages_prepend () {
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "f025e08a673ba4f11a3d17fc50e0abb1"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -48,17 +48,17 @@ PACKAGES_DYNAMIC += "^evas-engine-.* ^evas-loader-.* ^evas-saver-.* ^evas-cserve
|
||||
RRECOMMENDS_${PN} += "evas-loader-generic evas-generic-loader-svn"
|
||||
|
||||
RRECOMMENDS_${PN} = " \
|
||||
evas-engine-fb \
|
||||
evas-engine-software-generic \
|
||||
evas-engine-software-x11 \
|
||||
evas-engine-software-16 \
|
||||
evas-engine-software-16-x11 \
|
||||
evas-engine-xrender-x11 \
|
||||
\
|
||||
evas-loader-png \
|
||||
evas-loader-jpeg \
|
||||
evas-loader-gif \
|
||||
evas-loader-svg \
|
||||
evas-engine-fb \
|
||||
evas-engine-software-generic \
|
||||
evas-engine-software-x11 \
|
||||
evas-engine-software-16 \
|
||||
evas-engine-software-16-x11 \
|
||||
evas-engine-xrender-x11 \
|
||||
\
|
||||
evas-loader-png \
|
||||
evas-loader-jpeg \
|
||||
evas-loader-gif \
|
||||
evas-loader-svg \
|
||||
"
|
||||
|
||||
# Some upgrade path tweaking
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.1"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "c1710b7769c6dc8cfb0a21190fbc0c9b"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -8,20 +8,20 @@ INC_PR = "r0"
|
||||
inherit e
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--x-includes=${STAGING_INCDIR}/X11 \
|
||||
--x-libraries=${STAGING_LIBDIR} \
|
||||
--enable-simple-x11 \
|
||||
--x-includes=${STAGING_INCDIR}/X11 \
|
||||
--x-libraries=${STAGING_LIBDIR} \
|
||||
--enable-simple-x11 \
|
||||
\
|
||||
--disable-opengl-glew \
|
||||
--enable-software-x11 \
|
||||
--enable-xrender-x11 \
|
||||
--enable-software-16-x11 \
|
||||
--enable-opengl-x11 \
|
||||
--enable-fb \
|
||||
--disable-software-ddraw \
|
||||
--disable-software-16-ddraw \
|
||||
--disable-direct3d \
|
||||
--disable-software-sdl \
|
||||
--disable-opengl-glew \
|
||||
--enable-software-x11 \
|
||||
--enable-xrender-x11 \
|
||||
--enable-software-16-x11 \
|
||||
--enable-opengl-x11 \
|
||||
--enable-fb \
|
||||
--disable-software-ddraw \
|
||||
--disable-software-16-ddraw \
|
||||
--disable-direct3d \
|
||||
--disable-software-sdl \
|
||||
"
|
||||
|
||||
FILES_${PN} += "${datadir}"
|
||||
|
||||
@@ -3,7 +3,7 @@ require ${BPN}.inc
|
||||
PR = "${INC_PR}.0"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
${E_MIRROR}/${SRCNAME}-${SRCVER}.tar.gz \
|
||||
"
|
||||
|
||||
SRC_URI[md5sum] = "a4a6f3a84ff85d78c74e56a046bd3419"
|
||||
|
||||
@@ -8,6 +8,6 @@ DEFAULT_PREFERENCE = "-1"
|
||||
SRCNAME_append = "-1.7"
|
||||
|
||||
SRC_URI = "\
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
${E_SVN}/branches;module=${SRCNAME};protocol=http;scmdata=keep \
|
||||
"
|
||||
S = "${WORKDIR}/${SRCNAME}"
|
||||
|
||||
@@ -16,31 +16,31 @@ EXTRA_OECONF = "--with-edje-cc=${STAGING_BINDIR_NATIVE}/edje_cc"
|
||||
RSUGGESTS_${PN} = "elementary-tests"
|
||||
|
||||
do_compile_append() {
|
||||
sed -i -e s:${STAGING_DIR_TARGET}::g \
|
||||
-e s:/${TARGET_SYS}::g \
|
||||
eweather.pc
|
||||
sed -i -e s:${STAGING_DIR_TARGET}::g \
|
||||
-e s:/${TARGET_SYS}::g \
|
||||
eweather.pc
|
||||
}
|
||||
|
||||
PACKAGES += "${PN}-plugins"
|
||||
|
||||
FILES_${PN}-themes = "\
|
||||
${datadir} \
|
||||
${datadir} \
|
||||
"
|
||||
|
||||
FILES_${PN}-plugins = "\
|
||||
${libdir}/eweather/plugins/*.so \
|
||||
${libdir}/eweather/plugins/*.so \
|
||||
"
|
||||
|
||||
FILES_${PN}-dbg += "\
|
||||
${libdir}/eweather/plugins/.debug \
|
||||
${libdir}/eweather/plugins/.debug \
|
||||
"
|
||||
|
||||
FILES_${PN}-dev += "\
|
||||
${libdir}/eweather/plugins/*.a \
|
||||
${libdir}/eweather/plugins/*.la \
|
||||
${libdir}/eweather/plugins/*.a \
|
||||
${libdir}/eweather/plugins/*.la \
|
||||
"
|
||||
|
||||
RRECOMMENDS_${PN} = "\
|
||||
${PN}-themes \
|
||||
${PN}-plugins \
|
||||
${PN}-themes \
|
||||
${PN}-plugins \
|
||||
"
|
||||
|
||||
@@ -8,7 +8,7 @@ SDK-EFL = " \
|
||||
lua5.1-dev \
|
||||
edje-dev \
|
||||
elementary-dev \
|
||||
"
|
||||
"
|
||||
|
||||
SDK-EXTRAS ?= ""
|
||||
SDK-EXTRAS_qemux86 ?= " valgrind lttng-ust-dev"
|
||||
|
||||
@@ -15,10 +15,10 @@ RPROVIDES_${PN} += "task-x11-illume"
|
||||
RREPLACES_${PN} += "task-x11-illume"
|
||||
RCONFLICTS_${PN} += "task-x11-illume"
|
||||
RDEPENDS_${PN} = "\
|
||||
packagegroup-core-x11-xserver \
|
||||
packagegroup-core-x11-utils \
|
||||
\
|
||||
e-wm \
|
||||
${ECONFIG} \
|
||||
${ETHEME} \
|
||||
packagegroup-core-x11-xserver \
|
||||
packagegroup-core-x11-utils \
|
||||
\
|
||||
e-wm \
|
||||
${ECONFIG} \
|
||||
${ETHEME} \
|
||||
"
|
||||
|
||||
@@ -17,17 +17,17 @@ PR = "r2"
|
||||
SRCREV_FORMAT = "source"
|
||||
|
||||
SRC_URI = "\
|
||||
svn://svn.webkit.org/repository/webkit/trunk;module=Source;name=source;protocol=http;subdir=src \
|
||||
svn://svn.webkit.org/repository/webkit/trunk/;module=WebKitLibraries;protocol=http;subdir=src \
|
||||
svn://svn.webkit.org/repository/webkit/trunk/;module=Tools;protocol=http;subdir=src \
|
||||
file://CMakeLists.txt \
|
||||
file://bison-2.6.patch \
|
||||
svn://svn.webkit.org/repository/webkit/trunk;module=Source;name=source;protocol=http;subdir=src \
|
||||
svn://svn.webkit.org/repository/webkit/trunk/;module=WebKitLibraries;protocol=http;subdir=src \
|
||||
svn://svn.webkit.org/repository/webkit/trunk/;module=Tools;protocol=http;subdir=src \
|
||||
file://CMakeLists.txt \
|
||||
file://bison-2.6.patch \
|
||||
"
|
||||
|
||||
S = "${WORKDIR}/src"
|
||||
|
||||
do_configure_prepend() {
|
||||
cp ${WORKDIR}/CMakeLists.txt ${S};
|
||||
cp ${WORKDIR}/CMakeLists.txt ${S};
|
||||
}
|
||||
|
||||
inherit cmake lib_package pkgconfig perlnative pythonnative
|
||||
|
||||
@@ -17,5 +17,5 @@ RRECOMMENDS_${PN} = "gst-plugins-good-meta gst-plugins-base-meta"
|
||||
EXTRA_OECONF += "--disable-scrollkeeper"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e "s: help : :g" ${S}/Makefile.am
|
||||
sed -i -e "s: help : :g" ${S}/Makefile.am
|
||||
}
|
||||
|
||||
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
|
||||
DEPENDS = "webkit-gtk libsoup-2.4 openssl python-native python-docutils-native librsvg-native libnotify libunique"
|
||||
|
||||
SRC_URI = "http://archive.xfce.org/src/apps/midori/0.5/midori-${PV}.tar.bz2;name=midori \
|
||||
"
|
||||
"
|
||||
SRC_URI[midori.md5sum] = "ad11685633e23f8173e2cd947d945cce"
|
||||
SRC_URI[midori.sha256sum] = "d280c19bb135f2b644a67d9f34d1ec1c148ceb14b5de11ce6c23f64c15be5df0"
|
||||
|
||||
|
||||
@@ -12,24 +12,24 @@ SRC_URI[archive.sha256sum] = "287301692224cc1bb20abe8bc52140461f565e58898a99daef
|
||||
# GTK2.x mode
|
||||
EXTRA_OECONF += "--with-gtkver=2 \
|
||||
--with-bluetooth=yes \
|
||||
"
|
||||
"
|
||||
|
||||
do_configure_append() {
|
||||
rm config.log
|
||||
# Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror
|
||||
for i in $(find ${S} -name "Makefile") ; do
|
||||
sed -i -e s:-Werror::g $i
|
||||
done
|
||||
rm config.log
|
||||
# Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror
|
||||
for i in $(find ${S} -name "Makefile") ; do
|
||||
sed -i -e s:-Werror::g $i
|
||||
done
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} =+ "networkmanager"
|
||||
RRECOMMENDS_${PN} =+ "gnome-bluetooth gnome-keyring"
|
||||
|
||||
FILES_${PN} += "${datadir}/nm-applet/ \
|
||||
${datadir}/libnm-gtk/wifi.ui \
|
||||
${datadir}/gnome-vpn-properties/ \
|
||||
${datadir}/gnome/autostart/ \
|
||||
"
|
||||
${datadir}/libnm-gtk/wifi.ui \
|
||||
${datadir}/gnome-vpn-properties/ \
|
||||
${datadir}/gnome/autostart/ \
|
||||
"
|
||||
|
||||
FILES_${PN} += "${libdir}/gnome-bluetooth/plugins/*.so"
|
||||
FILES_${PN}-dev += "${libdir}/gnome-bluetooth/plugins/libnma.la"
|
||||
|
||||
@@ -8,7 +8,7 @@ PR = "r0"
|
||||
|
||||
SRC_URI = "http://www.kernel.org/pub/linux/bluetooth/obexd-${PV}.tar.gz \
|
||||
file://ssize_t_definition.patch \
|
||||
"
|
||||
"
|
||||
SRC_URI[md5sum] = "d03cf9bad2983243837f4f6d76ef14a6"
|
||||
SRC_URI[sha256sum] = "eaa9d8d9542700e6750918d72a3ce00f8cf3a2771d3e2516efd1be5a05f78582"
|
||||
|
||||
|
||||
@@ -20,15 +20,15 @@ CVSSRC = "${WORKDIR}/abi"
|
||||
SHRT_VER = "${@d.getVar('PV',1).split('.')[0]}.${@d.getVar('PV',1).split('.')[1]}"
|
||||
|
||||
FILES_${PN} += " \
|
||||
${datadir}/icons/* \
|
||||
${datadir}/mime-info \
|
||||
${datadir}/abiword-${SHRT_VER}/glade \
|
||||
${datadir}/abiword-${SHRT_VER}/system.profile-en \
|
||||
${datadir}/abiword-${SHRT_VER}/system.profile-en-GB \
|
||||
"
|
||||
${datadir}/icons/* \
|
||||
${datadir}/mime-info \
|
||||
${datadir}/abiword-${SHRT_VER}/glade \
|
||||
${datadir}/abiword-${SHRT_VER}/system.profile-en \
|
||||
${datadir}/abiword-${SHRT_VER}/system.profile-en-GB \
|
||||
"
|
||||
|
||||
# ${datadir}/abiword-${SHRT_VER}/templates/normal.awt \
|
||||
# ${datadir}/abiword-${SHRT_VER}/templates/normal.awt-en_GB \
|
||||
# ${datadir}/abiword-${SHRT_VER}/templates/normal.awt \
|
||||
# ${datadir}/abiword-${SHRT_VER}/templates/normal.awt-en_GB \
|
||||
|
||||
inherit autotools pkgconfig
|
||||
|
||||
@@ -40,10 +40,10 @@ PARALLEL_MAKE = ""
|
||||
# --disable-exports options
|
||||
|
||||
EXTRA_OECONF = " --enable-embedded=poky \
|
||||
--disable-printing \
|
||||
--with-sys-wv \
|
||||
--disable-exports \
|
||||
--disable-spellcheck"
|
||||
--disable-printing \
|
||||
--with-sys-wv \
|
||||
--disable-exports \
|
||||
--disable-spellcheck"
|
||||
|
||||
# TODO -- refactor this, so that instead of two strings and profiles
|
||||
# packages we have lots of locale packages, each with a set of strings and
|
||||
@@ -51,14 +51,14 @@ EXTRA_OECONF = " --enable-embedded=poky \
|
||||
#
|
||||
PACKAGES += " abiword-strings abiword-systemprofiles"
|
||||
|
||||
FILES_abiword-strings += "${datadir}/abiword-${SHRT_VER}/strings"
|
||||
FILES_abiword-systemprofiles += "${datadir}/abiword-${SHRT_VER}/system.profile*"
|
||||
FILES_abiword-strings += "${datadir}/abiword-${SHRT_VER}/strings"
|
||||
FILES_abiword-systemprofiles += "${datadir}/abiword-${SHRT_VER}/system.profile*"
|
||||
|
||||
# AbiWord configure.ac does not play nicely with autoreconf
|
||||
# so use the autogen.sh script that comes with AbiWord
|
||||
#
|
||||
do_configure() {
|
||||
cd ${S}
|
||||
export NOCONFIGURE="no"; ./autogen.sh
|
||||
oe_runconf
|
||||
cd ${S}
|
||||
export NOCONFIGURE="no"; ./autogen.sh
|
||||
oe_runconf
|
||||
}
|
||||
|
||||
@@ -50,9 +50,9 @@ do_configure() {
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
install -d ${D}${datadir}/pixmaps/
|
||||
mv ${D}${datadir}/icons/* ${D}${datadir}/pixmaps/
|
||||
rmdir ${D}${datadir}/icons
|
||||
install -d ${D}${datadir}/pixmaps/
|
||||
mv ${D}${datadir}/icons/* ${D}${datadir}/pixmaps/
|
||||
rmdir ${D}${datadir}/icons
|
||||
}
|
||||
|
||||
PACKAGES += " ${PN}-clipart ${PN}-icons ${PN}-strings ${PN}-systemprofiles ${PN}-templates "
|
||||
|
||||
@@ -9,13 +9,13 @@ inherit gnome
|
||||
|
||||
SRC_URI += "file://gtk-doc.m4 \
|
||||
file://gtk-doc.make \
|
||||
"
|
||||
"
|
||||
|
||||
ORBIT_IDL_SRC = "${STAGING_BINDIR_NATIVE}/orbit-idl-2"
|
||||
|
||||
FILES_${PN} += "${libdir}/orbit-2.0/*.so ${libdir}/bonobo/monikers/*.so"
|
||||
FILES_${PN}-dbg += "${libdir}/bonobo/monikers/.debug \
|
||||
${libdir}/bonobo-2.0/samples/.debug ${libdir}/orbit-2.0/.debug"
|
||||
${libdir}/bonobo-2.0/samples/.debug ${libdir}/orbit-2.0/.debug"
|
||||
FILES_${PN}-dev += "${libdir}/orbit-2.0/*.la ${libdir}/bonobo/monikers/*.la ${libdir}/bonobo-2.0/samples"
|
||||
FILES_${PN}-staticdev += "${libdir}/orbit-2.0/*.a ${libdir}/bonobo/monikers/*.a"
|
||||
|
||||
@@ -24,17 +24,17 @@ LEAD_SONAME = "libbonobo-2.so"
|
||||
PARALLEL_MAKE = ""
|
||||
|
||||
do_configure_prepend() {
|
||||
install -d m4
|
||||
install ${WORKDIR}/gtk-doc.m4 m4/
|
||||
install ${WORKDIR}/gtk-doc.make ./
|
||||
install -d m4
|
||||
install ${WORKDIR}/gtk-doc.m4 m4/
|
||||
install ${WORKDIR}/gtk-doc.make ./
|
||||
}
|
||||
|
||||
do_compile() {
|
||||
oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}"
|
||||
oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}"
|
||||
}
|
||||
|
||||
do_install() {
|
||||
oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}" DESTDIR="${D}" install
|
||||
install -d ${D}${datadir}/idl/bonobo-activation-2.0/
|
||||
install idl/*.idl ${D}${datadir}/idl/bonobo-activation-2.0/
|
||||
oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}" DESTDIR="${D}" install
|
||||
install -d ${D}${datadir}/idl/bonobo-activation-2.0/
|
||||
install idl/*.idl ${D}${datadir}/idl/bonobo-activation-2.0/
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@ PACKAGES =+ "dconf-editor"
|
||||
FILES_dconf-editor = "${bindir}/dconf-editor ${datadir}/dconf-editor/"
|
||||
FILES_${PN} += "${datadir}/dbus-1/ \
|
||||
${libdir}/gio/modules/*.so \
|
||||
"
|
||||
"
|
||||
FILES_${PN}-dbg += "${libdir}/gio/modules/.debug/libdconfsettings.so"
|
||||
|
||||
pkg_postinst_${PN} () {
|
||||
|
||||
@@ -7,9 +7,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=00aefaa50aad75c21367df66102d542c \
|
||||
DEPENDS = "gtk+ glib-2.0 libwnck lua5.1 virtual/libx11"
|
||||
|
||||
SRC_URI = " \
|
||||
http://www.gusnan.se/devilspie2/download/devilspie2_${PV}-src.tar.gz \
|
||||
file://default.lua \
|
||||
file://devilspie2.desktop \
|
||||
http://www.gusnan.se/devilspie2/download/devilspie2_${PV}-src.tar.gz \
|
||||
file://default.lua \
|
||||
file://devilspie2.desktop \
|
||||
"
|
||||
SRC_URI[md5sum] = "90b354662659e2922bd051fdde3b0971"
|
||||
SRC_URI[sha256sum] = "9c94fa13ed8c0bf6914fdda513e21a4bd527821b97a53d8004168a8d465a646a"
|
||||
@@ -17,14 +17,14 @@ SRC_URI[sha256sum] = "9c94fa13ed8c0bf6914fdda513e21a4bd527821b97a53d8004168a8d46
|
||||
inherit pkgconfig
|
||||
|
||||
do_compile() {
|
||||
export GTK2=1
|
||||
oe_runmake CC="${CC}" CPPFLAGS="${CPPFLAGS}" LDFLAGS=" -ldl -lm ${LDFLAGS}"
|
||||
export GTK2=1
|
||||
oe_runmake CC="${CC}" CPPFLAGS="${CPPFLAGS}" LDFLAGS=" -ldl -lm ${LDFLAGS}"
|
||||
}
|
||||
|
||||
do_install() {
|
||||
oe_runmake DESTDIR="${D}" PREFIX="${prefix}" install
|
||||
install -d ${D}/${sysconfdir}/devilspie2
|
||||
install -m 644 ${WORKDIR}/default.lua ${D}/${sysconfdir}/devilspie2
|
||||
install -d ${D}/${sysconfdir}/xdg/autostart
|
||||
install -m 644 ${WORKDIR}/devilspie2.desktop ${D}/${sysconfdir}/xdg/autostart
|
||||
oe_runmake DESTDIR="${D}" PREFIX="${prefix}" install
|
||||
install -d ${D}/${sysconfdir}/devilspie2
|
||||
install -m 644 ${WORKDIR}/default.lua ${D}/${sysconfdir}/devilspie2
|
||||
install -d ${D}/${sysconfdir}/xdg/autostart
|
||||
install -m 644 ${WORKDIR}/devilspie2.desktop ${D}/${sysconfdir}/xdg/autostart
|
||||
}
|
||||
|
||||
@@ -40,8 +40,8 @@ LDFLAGS += "-lpthread"
|
||||
#PARALLEL_MAKE = ""
|
||||
|
||||
do_configure_append () {
|
||||
cp ${WORKDIR}/iconv-detect.h ${S}
|
||||
sed -i 's/-DG_DISABLE_DEPRECATED//g' ${S}/libedataserver/Makefile
|
||||
cp ${WORKDIR}/iconv-detect.h ${S}
|
||||
sed -i 's/-DG_DISABLE_DEPRECATED//g' ${S}/libedataserver/Makefile
|
||||
}
|
||||
|
||||
EXTRA_OECONF = "--without-openldap --with-dbus --without-bug-buddy \
|
||||
|
||||
@@ -11,8 +11,8 @@ SRC_URI[archive.sha256sum] = "278a5c00ce07e6a3ea440d289de22dbec3ebec4ded4ff3b4c4
|
||||
EXTRA_OECONF += " --disable-nss --with-distributor-name=${DISTRO} --without-ca-file"
|
||||
|
||||
do_configure_prepend() {
|
||||
touch ${S}/gnome-doc-utils.make
|
||||
sed -i -e s:help::g Makefile.am
|
||||
touch ${S}/gnome-doc-utils.make
|
||||
sed -i -e s:help::g Makefile.am
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/icons ${datadir}/dbus-1"
|
||||
|
||||
@@ -18,11 +18,11 @@ EXTRA_OECONF = " --enable-thumbnailer \
|
||||
--disable-scrollkeeper \
|
||||
--enable-pixbuf \
|
||||
--disable-help \
|
||||
"
|
||||
"
|
||||
|
||||
do_install_append() {
|
||||
install -d install -d ${D}${datadir}/pixmaps
|
||||
install -m 0755 ${S}/data/icons/48x48/apps/evince.png ${D}${datadir}/pixmaps/
|
||||
install -d install -d ${D}${datadir}/pixmaps
|
||||
install -m 0755 ${S}/data/icons/48x48/apps/evince.png ${D}${datadir}/pixmaps/
|
||||
}
|
||||
|
||||
RDEPENDS_${PN} += "glib-2.0-utils"
|
||||
|
||||
@@ -14,5 +14,5 @@ SRC_URI[sha256sum] = "346f645c0fdef900642f6e9a2c18e7ba9a7ca9bc62fe2b08eb418f065a
|
||||
inherit autotools pkgconfig gsettings
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e "s: help: :g" ${S}/Makefile.am
|
||||
sed -i -e "s: help: :g" ${S}/Makefile.am
|
||||
}
|
||||
|
||||
@@ -18,7 +18,7 @@ SRC_URI += " \
|
||||
file://gdm-pam \
|
||||
file://Default \
|
||||
file://gdm.service.in \
|
||||
"
|
||||
"
|
||||
|
||||
SRC_URI[archive.md5sum] = "dbe5187a2e17881cc454e313e0ae8d1e"
|
||||
SRC_URI[archive.sha256sum] = "034d23af0ea18d86e5543e707212d9297ec7d83f221808968af266dbebc0e703"
|
||||
@@ -29,36 +29,36 @@ EXTRA_OECONF = " --enable-authentication-scheme=shadow \
|
||||
--disable-scrollkeeper"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e "s:\bdocs::g" ${S}/Makefile.am
|
||||
sed -i -e "s:\bdocs::g" ${S}/Makefile.am
|
||||
}
|
||||
|
||||
do_install_prepend() {
|
||||
mkdir -p ${D}/var/lib/gdm/.gconf.mandatory
|
||||
cp ${WORKDIR}/%gconf-tree.xml ${D}/var/lib/gdm/.gconf.mandatory/
|
||||
mkdir -p ${D}/var/lib/gdm/.gconf.mandatory
|
||||
cp ${WORKDIR}/%gconf-tree.xml ${D}/var/lib/gdm/.gconf.mandatory/
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
install -d ${D}/${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/gdm ${D}/${sysconfdir}/init.d/
|
||||
install -d ${D}/${sysconfdir}/init.d
|
||||
install -m 0755 ${WORKDIR}/gdm ${D}/${sysconfdir}/init.d/
|
||||
|
||||
install -d ${D}/${sysconfdir}/gdm
|
||||
install -m 0644 ${WORKDIR}/gdm.conf ${D}/${sysconfdir}/gdm/
|
||||
install -d ${D}/${sysconfdir}/gdm
|
||||
install -m 0644 ${WORKDIR}/gdm.conf ${D}/${sysconfdir}/gdm/
|
||||
|
||||
install -d ${D}/${sysconfdir}/pam.d
|
||||
install -m 0755 ${WORKDIR}/gdm-pam ${D}/${sysconfdir}/pam.d/gdm
|
||||
install -d ${D}/${sysconfdir}/pam.d
|
||||
install -m 0755 ${WORKDIR}/gdm-pam ${D}/${sysconfdir}/pam.d/gdm
|
||||
|
||||
install -d ${D}/${sysconfdir}/gdm/Init
|
||||
install -m 0755 ${WORKDIR}/Default ${D}/${sysconfdir}/gdm/Init
|
||||
install -d ${D}/${sysconfdir}/gdm/Init
|
||||
install -m 0755 ${WORKDIR}/Default ${D}/${sysconfdir}/gdm/Init
|
||||
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
sed -e 's,%sbindir%,${sbindir},g' \
|
||||
< ${WORKDIR}/gdm.service.in \
|
||||
> ${D}${systemd_unitdir}/system/gdm.service
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
sed -e 's,%sbindir%,${sbindir},g' \
|
||||
< ${WORKDIR}/gdm.service.in \
|
||||
> ${D}${systemd_unitdir}/system/gdm.service
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/icon* \
|
||||
${datadir}/xsession* \
|
||||
"
|
||||
${datadir}/xsession* \
|
||||
"
|
||||
|
||||
RDEPENDS_${PN} += "grep dbus-x11 shadow"
|
||||
# "libpam-base-files"
|
||||
@@ -81,8 +81,8 @@ pkg_postinst_${PN} () {
|
||||
grep "^gdm:" /etc/passwd > /dev/null || adduser --disabled-password --system --home /var/lib/gdm gdm --ingroup gdm -g gdm
|
||||
|
||||
if [ -d /var/lib/gdm ]; then
|
||||
chown -R gdm:gdm /var/lib/gdm
|
||||
chmod 0750 /var/lib/gdm
|
||||
chown -R gdm:gdm /var/lib/gdm
|
||||
chmod 0750 /var/lib/gdm
|
||||
fi
|
||||
|
||||
# Register up as default dm
|
||||
@@ -94,5 +94,5 @@ echo "${bindir}/gdm" > ${sysconfdir}/X11/default-display-manager
|
||||
pkg_postrm_${PN} () {
|
||||
deluser gdm || true
|
||||
delgroup gdm || true
|
||||
sed -i /gdm/d ${sysconfdir}/X11/default-display-manager || true
|
||||
sed -i /gdm/d ${sysconfdir}/X11/default-display-manager || true
|
||||
}
|
||||
|
||||
@@ -16,8 +16,8 @@ EXTRA_OECONF = "--disable-scrollkeeper \
|
||||
--enable-gvfs-metadata"
|
||||
|
||||
do_configure_prepend() {
|
||||
gnome-doc-common --copy || true
|
||||
gnome-doc-prepare --force --copy || true
|
||||
gnome-doc-common --copy || true
|
||||
gnome-doc-prepare --force --copy || true
|
||||
}
|
||||
|
||||
FILES_${PN} += "${libdir}/gedit-2/plugin* ${datadir}/gedit-2"
|
||||
|
||||
@@ -19,11 +19,11 @@ EXTRA_OECONF += "--enable-nautilus-sendto=no"
|
||||
|
||||
# No native docbook XSL stylesheets recipe in OE yet
|
||||
do_configure_prepend() {
|
||||
sed -i s/help// Makefile.am
|
||||
sed -i s/help// Makefile.am
|
||||
}
|
||||
|
||||
do_configure_append() {
|
||||
sed -i 's,func_fatal_error "error: cannot install,echo "bogus message about,' ${HOST_SYS}-libtool
|
||||
sed -i 's,func_fatal_error "error: cannot install,echo "bogus message about,' ${HOST_SYS}-libtool
|
||||
}
|
||||
|
||||
RRECOMMENDS_${PN} += "obexd obex-data-server"
|
||||
|
||||
@@ -14,7 +14,7 @@ SRC_URI[archive.sha256sum] = "7c568b57358e5c08f4d8dd76dbac7df2539135ad081872b605
|
||||
LDFLAGS += "-lgthread-2.0 -lxml2"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i s:help::g Makefile.am
|
||||
sed -i s:help::g Makefile.am
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/icon* \
|
||||
@@ -22,7 +22,7 @@ FILES_${PN} += "${datadir}/icon* \
|
||||
${libdir}/window-manager-settings/*.so \
|
||||
${datadir}/gnome \
|
||||
${datadir}/desktop-directories \
|
||||
"
|
||||
"
|
||||
FILES_${PN}-dbg += "${libdir}/window-manager-settings/.debug"
|
||||
FILES_${PN}-dev += "${libdir}/window-manager-settings/*.la"
|
||||
FILES_${PN}-staticdev += "${libdir}/window-manager-settings/*.a"
|
||||
|
||||
@@ -16,8 +16,8 @@ DEPENDS += "gconf libxrandr virtual/libx11 gtk+ glib-2.0 gnome-doc-utils"
|
||||
EXTRA_OECONF = "--disable-scrollkeeper --disable-desktop-docs"
|
||||
|
||||
do_configure_prepend () {
|
||||
cp ${STAGING_DATADIR_NATIVE}/gnome-common/data/omf.make ${S}
|
||||
sed -i -e s:^#!@PYTHON@:#!${bindir}/python: ${S}/gnome-about/gnome-about.in
|
||||
cp ${STAGING_DATADIR_NATIVE}/gnome-common/data/omf.make ${S}
|
||||
sed -i -e s:^#!@PYTHON@:#!${bindir}/python: ${S}/gnome-about/gnome-about.in
|
||||
}
|
||||
|
||||
PACKAGES =+ "libgnome-desktop"
|
||||
|
||||
@@ -12,15 +12,15 @@ SRC_URI[archive.md5sum] = "f0366c8baebca0404d190b2d78f3582d"
|
||||
SRC_URI[archive.sha256sum] = "03e461b6bda7f773f8018d25fa3213d3073d4dc83a76e6b39d962652f4de6a98"
|
||||
|
||||
SRC_URI += "\
|
||||
file://disable-scrollkeeper.patch \
|
||||
file://fix-dbus-interfaces.patch \
|
||||
file://sysrooted-pkg-config.patch \
|
||||
"
|
||||
file://disable-scrollkeeper.patch \
|
||||
file://fix-dbus-interfaces.patch \
|
||||
file://sysrooted-pkg-config.patch \
|
||||
"
|
||||
|
||||
EXTRA_OECONF += "--disable-scrollkeeper"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e "s: help : :g" ${S}/Makefile.am
|
||||
sed -i -e "s: help : :g" ${S}/Makefile.am
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-nautilus-extension"
|
||||
|
||||
@@ -27,13 +27,13 @@ SRC_URI[archive.sha256sum] = "25db8ec026c4bf47f0ef5cc7e2712f2aad175bd7fb8e4952ef
|
||||
EXTRA_OECONF = "--disable-scrollkeeper --disable-eds --enable-bonobo=no --with-in-process-applets=none"
|
||||
|
||||
do_configure_prepend() {
|
||||
gnome-doc-prepare --automake
|
||||
sed -i -e s:help:: ${S}/Makefile.am
|
||||
gnome-doc-prepare --automake
|
||||
sed -i -e s:help:: ${S}/Makefile.am
|
||||
}
|
||||
|
||||
pkg_postinst_${PN}_append () {
|
||||
gconftool-2 --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults \
|
||||
--direct --load /etc/gconf/schemas/panel-default-setup.entries
|
||||
gconftool-2 --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults \
|
||||
--direct --load /etc/gconf/schemas/panel-default-setup.entries
|
||||
}
|
||||
|
||||
PACKAGES =+ "libpanel-applet"
|
||||
@@ -44,6 +44,6 @@ FILES_${PN} =+ "${datadir}/gnome* \
|
||||
${datadir}/icons \
|
||||
${datadir}/PolicyKit \
|
||||
${libdir}/bonobo \
|
||||
"
|
||||
"
|
||||
|
||||
|
||||
|
||||
@@ -21,17 +21,17 @@ S = "${WORKDIR}/git"
|
||||
EXTRA_OECONF = "--disable-scrollkeeper --disable-eds --enable-bonobo=no --with-in-process-applets=none"
|
||||
|
||||
do_configure_prepend() {
|
||||
gnome-doc-prepare --automake
|
||||
sed -i -e s:help:: ${S}/Makefile.am
|
||||
sed -i -e s:^#!@PYTHON@:#!/usr/bin/python: ${S}/gnome-panel/gnome-panel-add.in
|
||||
gnome-doc-prepare --automake
|
||||
sed -i -e s:help:: ${S}/Makefile.am
|
||||
sed -i -e s:^#!@PYTHON@:#!/usr/bin/python: ${S}/gnome-panel/gnome-panel-add.in
|
||||
}
|
||||
|
||||
pkg_postinst_${PN}_append () {
|
||||
if [ -n "$D" ]; then
|
||||
exit 1
|
||||
exit 1
|
||||
fi
|
||||
gconftool-2 --config-source=xml:readwrite:${sysconfdir}/gconf/gconf.xml.defaults \
|
||||
--direct --load ${sysconfdir}/gconf/schemas/panel-default-setup.entries
|
||||
gconftool-2 --config-source=xml:readwrite:${sysconfdir}/gconf/gconf.xml.defaults \
|
||||
--direct --load ${sysconfdir}/gconf/schemas/panel-default-setup.entries
|
||||
}
|
||||
|
||||
PACKAGES =+ "libpanel-applet"
|
||||
@@ -42,6 +42,6 @@ FILES_${PN} =+ "${datadir}/gnome* \
|
||||
${datadir}/icons \
|
||||
${datadir}/PolicyKit \
|
||||
${libdir}/bonobo \
|
||||
"
|
||||
"
|
||||
|
||||
|
||||
|
||||
@@ -21,32 +21,34 @@ EXTRA_OECONF = " --disable-scrollkeeper \
|
||||
--with-dpms-ext=${STAGING_INCDIR}/.. \
|
||||
--enable-compile-warnings=no \
|
||||
ac_cv_header_X11_extensions_dpms_h=yes \
|
||||
"
|
||||
"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e 's: man ::g' ${S}/Makefile.am
|
||||
sed -i -e 's: man ::g' ${S}/Makefile.am
|
||||
}
|
||||
|
||||
do_configure_append() {
|
||||
rm config.log
|
||||
# Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror
|
||||
for i in $(find ${S} -name "Makefile") ; do
|
||||
sed -i -e s:-Werror::g $i
|
||||
done
|
||||
sed -e "s/libtool --/${TARGET_SYS}-libtool --/" -i ${S}/src/Makefile
|
||||
rm config.log
|
||||
# Sigh... --enable-compile-warnings=no doesn't actually turn off -Werror
|
||||
for i in $(find ${S} -name "Makefile") ; do
|
||||
sed -i -e s:-Werror::g $i
|
||||
done
|
||||
sed -e "s/libtool --/${TARGET_SYS}-libtool --/" -i ${S}/src/Makefile
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-applets"
|
||||
|
||||
FILES_${PN}-applets = "${bindir}/*applet* \
|
||||
${libdir}/bonobo/servers \
|
||||
${datadir}/gnome-2.0/ui"
|
||||
${libdir}/bonobo/servers \
|
||||
${datadir}/gnome-2.0/ui \
|
||||
"
|
||||
|
||||
FILES_${PN} += "${datadir}/icons \
|
||||
${datadir}/dbus-1 \
|
||||
${datadir}/gnome/autostart \
|
||||
"
|
||||
${datadir}/dbus-1 \
|
||||
${datadir}/gnome/autostart \
|
||||
"
|
||||
|
||||
FILES_${PN}-doc += "${datadir}/omf \
|
||||
${datadir}/gnome/help "
|
||||
${datadir}/gnome/help \
|
||||
"
|
||||
|
||||
|
||||
@@ -15,10 +15,10 @@ SRC_URI[archive.sha256sum] = "22d93ce433fcf9c7ce6b5f36dd81f64e692ea0e41faaa0f611
|
||||
EXTRA_OECONF = " --with-gtk=2.0 ac_cv_path_GCONF_SANITY_CHECK=set --disable-docbook-docs"
|
||||
|
||||
do_configure_append() {
|
||||
for i in $(find ${S} -name "Makefile") ; do
|
||||
sed -i -e s:"GCONFTOOL = .*/usr/bin/gconftool-2":"GCONFTOOL = /usr/bin/gconftool-2":g $i
|
||||
sed -i -e s:"GCONF_SANITY_CHECK = set":"GCONF_SANITY_CHECK = /usr/libexec/gconf-sanity-check-2":g $i
|
||||
done
|
||||
for i in $(find ${S} -name "Makefile") ; do
|
||||
sed -i -e s:"GCONFTOOL = .*/usr/bin/gconftool-2":"GCONFTOOL = /usr/bin/gconftool-2":g $i
|
||||
sed -i -e s:"GCONF_SANITY_CHECK = set":"GCONF_SANITY_CHECK = /usr/libexec/gconf-sanity-check-2":g $i
|
||||
done
|
||||
}
|
||||
|
||||
RRECOMMENDS_${PN} += "${@base_contains('DISTRO_FEATURES', 'pam', 'pam-plugin-ck-connector', '', d)}"
|
||||
|
||||
@@ -17,10 +17,10 @@ EXTRA_OECONF = "--disable-esd \
|
||||
--x-includes=${STAGING_INCDIR} \
|
||||
--x-libraries=${STAGING_LIBDIR} \
|
||||
--enable-polkit \
|
||||
"
|
||||
"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e 's:-L$libdir::g' -e 's:-I$includedir::g' configure.ac
|
||||
sed -i -e 's:-L$libdir::g' -e 's:-I$includedir::g' configure.ac
|
||||
}
|
||||
|
||||
FILES_${PN} += "${libdir}/gnome-settings-daemon-2.0/*.so ${libdir}/gnome-settings-daemon-2.0/*plugin \
|
||||
|
||||
@@ -12,13 +12,13 @@ SRC_URI[archive.sha256sum] = "b628edfd39e3a6b374ce133f367d3568475eb4e981a367f4f9
|
||||
SRC_URI += "file://0001-Fix-glib-includes.patch"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e s:help::g ${S}/Makefile.am
|
||||
sed -i -e s:help::g ${S}/Makefile.am
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/icons \
|
||||
${datadir}/dbus-1 \
|
||||
${datadir}/gnome/autostart \
|
||||
"
|
||||
"
|
||||
|
||||
FILES_${PN}-doc += "${datadir}/omf \
|
||||
${datadir}/gnome/help "
|
||||
|
||||
@@ -21,7 +21,7 @@ inherit gnome
|
||||
RPROVIDES_${PN} = "gnome-vfs-plugin-dbus"
|
||||
|
||||
SRC_URI += "file://gconftool-lossage.patch \
|
||||
file://gnome-vfs-no-kerberos.patch;striplevel=0"
|
||||
file://gnome-vfs-no-kerberos.patch;striplevel=0"
|
||||
|
||||
SRC_URI[archive.md5sum] = "a05fab03eeef10a47dd156b758982f2e"
|
||||
SRC_URI[archive.sha256sum] = "62de64b5b804eb04104ff98fcd6a8b7276d510a49fbd9c0feb568f8996444faa"
|
||||
@@ -33,7 +33,7 @@ EXTRA_OECONF = " --disable-hal \
|
||||
ac_cv_lib_sec_acl=no \
|
||||
gvfs_cv_HAVE_SOLARIS_ACLS=no \
|
||||
gvfs_cv_HAVE_POSIX_ACLS=no \
|
||||
"
|
||||
"
|
||||
|
||||
FILES_${PN} += "${libdir}/vfs ${datadir}/dbus-1/services"
|
||||
FILES_${PN}-dbg += "${libdir}/gnome-vfs-2.0/modules/.debug"
|
||||
|
||||
@@ -9,13 +9,13 @@ PR = "r2"
|
||||
inherit gnome pkgconfig
|
||||
|
||||
do_compile_append () {
|
||||
cp libgnomecups-1.0.pc libgnomecups-1.0.pc.old
|
||||
sed 's:${STAGING_DIR_HOST}::' < libgnomecups-1.0.pc.old > libgnomecups-1.0.pc
|
||||
cp libgnomecups-1.0.pc libgnomecups-1.0.pc.old
|
||||
sed 's:${STAGING_DIR_HOST}::' < libgnomecups-1.0.pc.old > libgnomecups-1.0.pc
|
||||
}
|
||||
|
||||
SRC_URI += "\
|
||||
file://libgnomecups-0.2.3-glib.h.patch \
|
||||
file://libgnomecups-0.2.3-cups-1.6.patch \
|
||||
file://libgnomecups-0.2.3-glib.h.patch \
|
||||
file://libgnomecups-0.2.3-cups-1.6.patch \
|
||||
"
|
||||
|
||||
SRC_URI[archive.md5sum] = "dc4920c15c9f886f73ea74fbff0ae48b"
|
||||
|
||||
@@ -6,8 +6,8 @@ DEPENDS = "gconf-dbus dbus libxklavier gtk+"
|
||||
inherit gnome
|
||||
|
||||
do_configure_append() {
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -15,10 +15,10 @@ SRC_URI[archive.md5sum] = "d66b81ee8aa3b3a33f5efc9a47ce07e3"
|
||||
SRC_URI[archive.sha256sum] = "8b34f81599423ef3da9c43775495da602f83cbbee069c9e760ffeae6aa4768e6"
|
||||
|
||||
FILES_${PN}-dbg += "\
|
||||
${libdir}/${PN}/${PV}/modules/.debug \
|
||||
${libdir}/${PN}/${PV}/modules/*/.debug \
|
||||
${libdir}/${PN}/${PV}/modules/.debug \
|
||||
${libdir}/${PN}/${PV}/modules/*/.debug \
|
||||
"
|
||||
FILES_${PN}-staticdev += "\
|
||||
${libdir}/${PN}/${PV}/modules/*.a \
|
||||
${libdir}/${PN}/${PV}/modules/*/*.a \
|
||||
${libdir}/${PN}/${PV}/modules/*.a \
|
||||
${libdir}/${PN}/${PV}/modules/*/*.a \
|
||||
"
|
||||
|
||||
@@ -16,7 +16,7 @@ SRC_URI[archive.sha256sum] = "cf809695230ab8892a078be454a42ade865754c72ec1da7c3d
|
||||
SRC_URI += "file://parallel.patch"
|
||||
|
||||
do_install_append () {
|
||||
rm ${D}${libdir}/${BPN}/extensions/*.a
|
||||
rm ${D}${libdir}/${BPN}/extensions/*.a
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/icons"
|
||||
|
||||
@@ -12,18 +12,18 @@ EXTRA_OECONF += "--disable-gphoto2 \
|
||||
--disable-samba"
|
||||
|
||||
do_install_append() {
|
||||
rm -rf ${D}${sysconfdir}
|
||||
rm -rf ${D}${bindir}
|
||||
rm -rf ${D}${includedir}
|
||||
rm -rf ${D}${libdir}/gio
|
||||
rm -rf ${D}${libdir}/lib*
|
||||
rmdir --ignore-fail-on-non-empty ${D}${libdir}
|
||||
rm -rf ${D}${datadir}/gvfs/mounts
|
||||
rm -rf ${D}${datadir}/glib-2.0
|
||||
rm -rf ${D}${datadir}/GConf
|
||||
rm -f ${D}${datadir}/dbus-1/services/gvfs-*
|
||||
rm -rf ${D}${datadir}/locale
|
||||
rm -f ${D}${libexecdir}/gvfsd*
|
||||
rm -f ${D}${libexecdir}/gvfs-fuse-daemon
|
||||
rm -f ${D}${libexecdir}/gvfs-gphoto2-volume-monitor
|
||||
rm -rf ${D}${sysconfdir}
|
||||
rm -rf ${D}${bindir}
|
||||
rm -rf ${D}${includedir}
|
||||
rm -rf ${D}${libdir}/gio
|
||||
rm -rf ${D}${libdir}/lib*
|
||||
rmdir --ignore-fail-on-non-empty ${D}${libdir}
|
||||
rm -rf ${D}${datadir}/gvfs/mounts
|
||||
rm -rf ${D}${datadir}/glib-2.0
|
||||
rm -rf ${D}${datadir}/GConf
|
||||
rm -f ${D}${datadir}/dbus-1/services/gvfs-*
|
||||
rm -rf ${D}${datadir}/locale
|
||||
rm -f ${D}${libexecdir}/gvfsd*
|
||||
rm -f ${D}${libexecdir}/gvfs-fuse-daemon
|
||||
rm -f ${D}${libexecdir}/gvfs-gphoto2-volume-monitor
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@ EXTRA_OECONF = "--with-samba-includes=${STAGING_INCDIR} \
|
||||
--with-samba-libs=${STAGING_LIBDIR} \
|
||||
--with-archive-includes=${STAGING_INCDIR} \
|
||||
--with-archive-libs=${STAGING_LIBDIR} \
|
||||
"
|
||||
"
|
||||
|
||||
FILES_${PN} += "${datadir}/dbus-1/services/*"
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ SRC_URI[archive.md5sum] = "f1a96c6f19c9a0bc6b4e12acc9a8a85d"
|
||||
SRC_URI[archive.sha256sum] = "9041526fa0466b99dae5cf06c2cc70376f25531eec5d58b1e1378acfb302410c"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e 's: doc : :g' ${S}/Makefile.am
|
||||
sed -i -e 's: doc : :g' ${S}/Makefile.am
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/gnome* \
|
||||
|
||||
@@ -10,7 +10,7 @@ SRC_URI[archive.md5sum] = "bf6a0a05051341ecb250f332e3edfb88"
|
||||
SRC_URI[archive.sha256sum] = "b835374661423f37c46aa8e37368ae24a68856f117b7c21e475a21efdba5264c"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e 's: doc : :g' ${S}/Makefile.am
|
||||
sed -i -e 's: doc : :g' ${S}/Makefile.am
|
||||
}
|
||||
|
||||
FILES_${PN} += "${datadir}/gnome* \
|
||||
|
||||
@@ -19,5 +19,5 @@ SRC_URI[sha256sum] = "9edca690617eaa19054951ca53501c802180262be8880ed84754ac46c9
|
||||
FILES_${PN} += "${datadir}/icons"
|
||||
|
||||
do_install_append () {
|
||||
install -m 0644 ${WORKDIR}/index.theme ${D}/${datadir}/icons/hicolor
|
||||
install -m 0644 ${WORKDIR}/index.theme ${D}/${datadir}/icons/hicolor
|
||||
}
|
||||
|
||||
@@ -16,8 +16,8 @@ EXTRA_OECONF += "--disable-gtk-doc"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i -e s:docs::g ${S}/Makefile.am
|
||||
echo "EXTRA_DIST = version.xml" > gnome-doc-utils.make
|
||||
echo "EXTRA_DIST = version.xml" > gtk-doc.make
|
||||
echo "EXTRA_DIST = version.xml" > gnome-doc-utils.make
|
||||
echo "EXTRA_DIST = version.xml" > gtk-doc.make
|
||||
}
|
||||
|
||||
FILES_${PN} += "${libdir}/bonobo/servers ${libdir}/bonobo/monikers/*.so \
|
||||
|
||||
@@ -12,8 +12,8 @@ SRC_URI[archive.md5sum] = "de32a6e3e3464b566eecdc4332bf34bd"
|
||||
SRC_URI[archive.sha256sum] = "ddd52c4cc7d83ad7ef964a1bcb4db87407e65b00ffc3e70c088ca4ee7383d256"
|
||||
|
||||
do_configure_append() {
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -19,6 +19,6 @@ SRC_URI += "file://gnome-stock-pixbufs.h file://no-pixbuf-csource.patch"
|
||||
EXTRA_OECONF = "--disable-gtk-doc"
|
||||
|
||||
do_configure_prepend() {
|
||||
install -m 0644 ${WORKDIR}/gnome-stock-pixbufs.h ${S}/libgnomeui/pixmaps/gnome-stock-pixbufs.h
|
||||
install -m 0644 ${WORKDIR}/gnome-stock-pixbufs.h ${S}/libgnomeui/pixmaps/gnome-stock-pixbufs.h
|
||||
}
|
||||
|
||||
|
||||
@@ -15,9 +15,9 @@ SRC_URI[archive.md5sum] = "2b702648b853402554c97d75405c60d3"
|
||||
SRC_URI[archive.sha256sum] = "eef0a9d6eca4e6af6c16b208947e3c958c428b94d22792bdd0b80c08a4b301db"
|
||||
|
||||
EXTRA_OECONF = "\
|
||||
--without-python \
|
||||
--without-gnome-vfs --without-bonobo \
|
||||
--disable-gtk-doc \
|
||||
--with-bz2"
|
||||
--without-python \
|
||||
--without-gnome-vfs --without-bonobo \
|
||||
--disable-gtk-doc \
|
||||
--with-bz2"
|
||||
|
||||
RDEPENDS_${PN} = "gconf"
|
||||
|
||||
@@ -8,13 +8,13 @@ PR = "r4"
|
||||
inherit autotools
|
||||
|
||||
SRC_URI = "http://burtonini.com/temp/${PN}-${PV}.tar.gz \
|
||||
file://gtkstylus.sh"
|
||||
file://gtkstylus.sh"
|
||||
SRC_URI[md5sum] = "fa1c82cd9fd2fafd7ff10d78eb5781c5"
|
||||
SRC_URI[sha256sum] = "383e0a22a537f653b8d41688277560f95678a042967198085ec7caa1a5cc2f4c"
|
||||
|
||||
do_install_append() {
|
||||
install -d ${D}/${sysconfdir}/X11/Xsession.d
|
||||
install -m 755 ${WORKDIR}/gtkstylus.sh ${D}/${sysconfdir}/X11/Xsession.d/45gtkstylus
|
||||
install -d ${D}/${sysconfdir}/X11/Xsession.d
|
||||
install -m 755 ${WORKDIR}/gtkstylus.sh ${D}/${sysconfdir}/X11/Xsession.d/45gtkstylus
|
||||
}
|
||||
|
||||
# Horrible but rpm falls over if you use '*'
|
||||
|
||||
@@ -12,6 +12,6 @@ SRC_URI[archive.md5sum] = "732c9d2cd5eb6a9069264a319d330516"
|
||||
SRC_URI[archive.sha256sum] = "73b16a79bb2fed62dcf146b11c4405776cb96a09dce66379ca541da7dbd64210"
|
||||
|
||||
do_configure_prepend() {
|
||||
sed -i /GTK3/d configure.ac
|
||||
sed -i -e /test-gtk3/d -e 's/test-xy-stress \\/test-xy-stress/' tests/Makefile.am
|
||||
sed -i /GTK3/d configure.ac
|
||||
sed -i -e /test-gtk3/d -e 's/test-xy-stress \\/test-xy-stress/' tests/Makefile.am
|
||||
}
|
||||
|
||||
@@ -12,14 +12,14 @@ SRC_URI[archive.sha256sum] = "dfd94b17a752b2839281764f0a16af2b338024c8867c10fba7
|
||||
EXTRA_OECONF = "--with-xkb-bin-base=${bindir}"
|
||||
|
||||
do_configure_append() {
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I$(includedir)':'-I.':g
|
||||
find ${S} -name Makefile | xargs sed -i s:'-I/usr/include':'-I${STAGING_INCDIR}':g
|
||||
}
|
||||
|
||||
do_compile_append() {
|
||||
sed -i -e s:${STAGING_DIR_TARGET}::g \
|
||||
-e s:/${TARGET_SYS}::g \
|
||||
libxklavier.pc
|
||||
sed -i -e s:${STAGING_DIR_TARGET}::g \
|
||||
-e s:/${TARGET_SYS}::g \
|
||||
libxklavier.pc
|
||||
}
|
||||
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user