blob: d93aab1e615a4fcbbae3bdc9e5e00e226795461e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
# eel OE build file
# Copyright (C) 2005, Advanced Micro Devices, Inc. All Rights Reserved
# Released under the MIT license (see packages/COPYING)
inherit gnome
PR = "r2"
LICENSE="GPL"
SRC_URI += "file://configure.patch;patch=1"
DEPENDS="libgnomeui virtual/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}
}
|