diff options
author | Michael Lauer <mickey@vanille-media.de> | 2007-09-11 23:48:11 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2007-09-11 23:48:11 +0000 |
commit | e92bb6935887d45b0dd13ffbd7070d403042892a (patch) | |
tree | 0adcada99a5990b3814d24376616e33ff8001211 /packages/gtk+/gdk-pixbuf-csource-native_2.10.14.bb | |
parent | 4b798326c3a2c5e88e270a564638278344c3dbd6 (diff) |
add gdk-pixbuf-csource-native for building stuff on X/Gtk+-less buildmachines
(yes, this version can be built without atk, pango, cairo, etc. :)
Diffstat (limited to 'packages/gtk+/gdk-pixbuf-csource-native_2.10.14.bb')
-rw-r--r-- | packages/gtk+/gdk-pixbuf-csource-native_2.10.14.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/packages/gtk+/gdk-pixbuf-csource-native_2.10.14.bb b/packages/gtk+/gdk-pixbuf-csource-native_2.10.14.bb new file mode 100644 index 0000000000..f3b7b0e6c8 --- /dev/null +++ b/packages/gtk+/gdk-pixbuf-csource-native_2.10.14.bb @@ -0,0 +1,25 @@ +require gtk+_${PV}.bb +inherit native +DEPENDS = "" +S = "${WORKDIR}/gtk+-${PV}" +FILESPATH = "${FILE_DIRNAME}/gdk-pixbuf-csource:${FILE_DIRNAME}/gtk+-${PV}:${FILE_DIRNAME}/files" +SRC_URI += "file://reduce-dependencies.patch;patch=1" + +EXTRA_OECONF = "\ + --without-x \ + --with-gdktarget=linux-fb \ + --without-libtiff \ +" + +do_compile() { + cd gdk-pixbuf && oe_runmake +} + +do_stage() { + cd gdk-pixbuf && oe_runmake install +} + +do_install() { + : +} + |