summaryrefslogtreecommitdiff
path: root/meta/packages/telepathy/telepathy-glib_0.5.10.bb
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openedhand.com>2007-11-27 15:33:16 +0000
committerMarcin Juszkiewicz <hrw@openedhand.com>2007-11-27 15:33:16 +0000
commit0ba486c5d1805a480147ea50c4ef92227af06e20 (patch)
tree08c55faaa87600b0beebf7336e8a731ee4e8b623 /meta/packages/telepathy/telepathy-glib_0.5.10.bb
parent2bbd6adc1f1ea4320ad4bee6016a8cec7cdce430 (diff)
downloadopenembedded-core-0ba486c5d1805a480147ea50c4ef92227af06e20.tar.gz
openembedded-core-0ba486c5d1805a480147ea50c4ef92227af06e20.tar.bz2
openembedded-core-0ba486c5d1805a480147ea50c4ef92227af06e20.tar.xz
openembedded-core-0ba486c5d1805a480147ea50c4ef92227af06e20.zip
telepathy-glib: upgrade to 0.7.0
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3249 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/telepathy/telepathy-glib_0.5.10.bb')
-rw-r--r--meta/packages/telepathy/telepathy-glib_0.5.10.bb40
1 files changed, 0 insertions, 40 deletions
diff --git a/meta/packages/telepathy/telepathy-glib_0.5.10.bb b/meta/packages/telepathy/telepathy-glib_0.5.10.bb
deleted file mode 100644
index 7885cdecd..000000000
--- a/meta/packages/telepathy/telepathy-glib_0.5.10.bb
+++ /dev/null
@@ -1,40 +0,0 @@
-DESCRIPTION = "Telepathy framework - GLib library"
-HOMEPAGE = "http://telepathy.freedesktop.org/wiki/"
-DEPENDS = "glib-2.0 dbus python-native-runtime dbus-native"
-LICENSE = "LGPL"
-
-SRC_URI = "http://telepathy.freedesktop.org/releases/telepathy-glib/${P}.tar.gz "
-
-inherit autotools pkgconfig
-
-FILES_${PN} += "${datadir}/telepathy \
- ${datadir}/dbus-1"
-
-do_stage() {
- #
- # copied autotools_stage_all because telepathy-glib has one lib only built as static
- # so it can not be oe_libinstalled
- #
- rm -rf ${STAGE_TEMP}
- mkdir -p ${STAGE_TEMP}
- oe_runmake DESTDIR="${STAGE_TEMP}" install
- if [ -d ${STAGE_TEMP}/${includedir} ]; then
- cp -fpPR ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}
- fi
- if [ -d ${STAGE_TEMP}/${libdir} ]
- then
- for i in ${STAGE_TEMP}/${libdir}/*.la
- do
- if [ ! -f "$i" ]; then
- cp -fpPR ${STAGE_TEMP}/${libdir}/* ${STAGING_LIBDIR}
- break
- fi
- done
- oe_libinstall -so -C telepathy-glib/.libs libtelepathy-glib ${STAGING_LIBDIR}
- fi
- if [ -d ${STAGE_TEMP}/${datadir}/aclocal ]; then
- install -d ${STAGING_DATADIR}/aclocal
- cp -fpPR ${STAGE_TEMP}/${datadir}/aclocal/* ${STAGING_DATADIR}/aclocal
- fi
- rm -rf ${STAGE_TEMP}
-}