diff options
Diffstat (limited to 'recipes/eel/eel_2.6.1.bb')
-rw-r--r-- | recipes/eel/eel_2.6.1.bb | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/recipes/eel/eel_2.6.1.bb b/recipes/eel/eel_2.6.1.bb new file mode 100644 index 0000000000..f123a4aa93 --- /dev/null +++ b/recipes/eel/eel_2.6.1.bb @@ -0,0 +1,45 @@ +# eel OE build file +# Copyright (C) 2005, Advanced Micro Devices, Inc. All Rights Reserved +# Released under the MIT license (see packages/COPYING) + +inherit gnome + +LICENSE="GPL" +SRC_URI += "file://configure.patch;patch=1" + +DEPENDS="libgnomeui gail" +EXTRA_OECONF = "--disable-gtk-doc" + +edir="${STAGING_INCDIR}/eel-2/eel" + +headers="eel-accessibility.h eel-graphic-effects.h \ + eel-alert-dialog.h eel-gtk-container.h \ + eel-art-extensions.h eel-gtk-extensions.h \ + eel-art-gtk-extensions.h eel-gtk-macros.h \ + eel-background-box.h eel-i18n.h \ + eel-background.h eel-image-table.h \ + eel-canvas-rect-ellipse.h eel-labeled-image.h \ + eel-canvas-util.h eel-marshal.h \ + eel-canvas.h eel-pango-extensions.h \ + eel-cell-renderer-pixbuf-list.h eel-preferences-glade.h \ + eel-dateedit-extensions.h eel-preferences.h \ + eel-debug-drawing.h eel-self-checks.h \ + eel-debug.h eel-stock-dialogs.h \ + eel-editable-label.h eel-string-list.h \ + eel-ellipsizing-label.h eel-string.h \ + eel-enumeration.h eel-type-builtins.h \ + eel-features.h eel-types.h \ + eel-gconf-extensions.h eel-vfs-extensions.h \ + eel-gdk-extensions.h eel-wrap-table.h \ + eel-gdk-pixbuf-extensions.h eel-xml-extensions.h \ + eel-glib-extensions.h eel.h \ + eel-gnome-extensions.h" + +do_stage() { + install -d ${edir} + for file in ${headers}; do + install -m 0644 eel/$file ${edir}/$file + done + + oe_libinstall -C eel libeel-2 ${STAGING_LIBDIR} +} |