diff options
author | Phil Blundell <philb@gnu.org> | 2004-05-16 00:06:19 +0000 |
---|---|---|
committer | Phil Blundell <philb@gnu.org> | 2004-05-16 00:06:19 +0000 |
commit | 9dc4ba62ae89d58f678961b77ea096467f2a4d0b (patch) | |
tree | 9d221a216dd181737f9cd3cef6344c7540bda594 /gnome/libbonobo_2.6.0.oe | |
parent | cf6acd1f2ee3cd01b4da98565b42101e14215d2d (diff) |
add staging bits
BKrev: 40a6b07bycTza33JplNnEvMXpwhAZw
Diffstat (limited to 'gnome/libbonobo_2.6.0.oe')
-rw-r--r-- | gnome/libbonobo_2.6.0.oe | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnome/libbonobo_2.6.0.oe b/gnome/libbonobo_2.6.0.oe index e69de29bb2..bf9a21fd3d 100644 --- a/gnome/libbonobo_2.6.0.oe +++ b/gnome/libbonobo_2.6.0.oe @@ -0,0 +1,35 @@ +SECTION = "gnome/base" +DESCRIPTION = "Bonobo CORBA interfaces library" +SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libbonobo/2.6/libbonobo-${PV}.tar.bz2" +DEPENDS = "glib-2.0 orbit2 intltool-native libxml2" + +inherit autotools libtool pkgconfig + +do_configure_prepend() { + install -d m4 + install ${FILESDIR}/gtk-doc.m4 m4/ + install ${FILESDIR}/gtk-doc.make ./ +} + +ACTIVATION_HEADERS = "Bonobo_Unknown.h Bonobo_GenericFactory.h Bonobo_Activation_types.h \ + bonobo-activation.h bonobo-activation-async.h bonobo-activation-activate.h \ + bonobo-activation-init.h bonobo-activation-shlib.h bonobo-activation-register.h \ + bonobo-activation-server-info.h bonobo-activation-version.h" + +BONOBO_HEADERS = "Bonobo.h bonobo-arg.h bonobo-context.h bonobo-event-source.h bonobo-exception.h \ + bonobo-generic-factory.h bonobo-item-container.h bonobo-item-handler.h \ + bonobo-listener.h bonobo-main.h bonobo-macros.h bonobo-moniker-extender.h \ + bonobo-moniker-simple.h bonobo-moniker-util.h bonobo-moniker.h bonobo-object.h \ + bonobo-foreign-object.h bonobo-persist-file.h bonobo-persist-stream.h \ + bonobo-persist.h bonobo-persist-client.h bonobo-property-bag.h \ + bonobo-property-bag-client.h bonobo-shlib-factory.h bonobo-storage.h \ + bonobo-stream.h bonobo-stream-client.h bonobo-stream-memory.h \ + bonobo-storage-memory.h bonobo-xobject.h bonobo-i18n.h bonobo-types.h" + +do_stage() { + install -d ${STAGING_INCDIR}/bonobo-activation-2.0/bonobo-activation + for i in ${ACTIVATION_HEADERS}; do install -m 0644 bonobo-activation/$i ${STAGING_INCDIR}/bonobo-activation-2.0/bonobo-activation/; done + install -d ${STAGING_INCDIR}/libbonobo-2.0/bonobo + for i in ${BONOBO_HEADERS}; do install -m 0644 bonobo/$i ${STAGING_INCDIR}/libbonobo-2.0/bonobo/; done + install -m 0644 libbonobo.h ${STAGING_INCDIR}/libbonobo-2.0/ +} |