diff options
author | Steve Sakoman <steve@sakoman.com> | 2009-10-13 21:39:31 -0700 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-10-14 14:09:51 +0200 |
commit | 67caf170b56a100eb673b73740c4e456361fef29 (patch) | |
tree | 71335f6499de72a50ae3512e1720b6472e530700 /recipes/vte/vte_0.21.5.bb | |
parent | 3dde05437db21c9960c416a42c03d0e2ab911bdb (diff) |
vte: add 0.21.5
Diffstat (limited to 'recipes/vte/vte_0.21.5.bb')
-rw-r--r-- | recipes/vte/vte_0.21.5.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/recipes/vte/vte_0.21.5.bb b/recipes/vte/vte_0.21.5.bb new file mode 100644 index 0000000000..c080310864 --- /dev/null +++ b/recipes/vte/vte_0.21.5.bb @@ -0,0 +1,33 @@ +DESCRIPTION = "vte is a virtual terminal emulator" +LICENSE = "LGPL" +DEPENDS += "glib-2.0 gtk+ intltool-native ncurses" + +inherit gnome + +SRC_URI += " \ + file://vte.desktop.in \ + " + +EXTRA_OECONF = "--disable-gtk-doc --disable-python" + +# Upstream does not provide desktop file for vte considering it only as +# a testing utility. +do_install_append() { + mkdir -p ${D}${datadir}/applications + sed s/@VERSION@/${PV}/ <${WORKDIR}/vte.desktop.in >${D}${datadir}/applications/vte.desktop +} + +do_configure_prepend() { + sed -i -e s:docs::g ${S}/Makefile.am + echo "EXTRA_DIST = version.xml" > gtk-doc.make +} + +do_stage() { + autotools_stage_all +} + +PACKAGES =+ "libvte vte-termcap gnome-pty-helper" +FILES_libvte = "${libdir}/*.so.*" +FILES_gnome-pty-helper = "${libexecdir}/gnome-pty-helper" +RDEPENDS_libvte = "vte-termcap gnome-pty-helper" +FILES_vte-termcap = "${datadir}/vte/termcap" |