diff options
author | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-11-02 09:46:33 +0100 |
---|---|---|
committer | Stefan Schmidt <stefan@datenfreihafen.org> | 2009-11-02 09:46:33 +0100 |
commit | 762dcd115a0b1e67eeabcfd5adac422ae6bec744 (patch) | |
tree | 1402b4937f0e0abd26de07512b41ee9e075f29f7 /recipes/xchat | |
parent | dfac41b5e2fe1215d4ec4282af4040219d89dc22 (diff) | |
parent | d88287ca8aad65a2e44fe7c18a40bb6f8160479d (diff) |
Merge branch 'org.openembedded.dev' of git.openembedded.org:openembedded into org.openembedded.dev
Diffstat (limited to 'recipes/xchat')
-rw-r--r-- | recipes/xchat/xchat_2.8.6.bb | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/recipes/xchat/xchat_2.8.6.bb b/recipes/xchat/xchat_2.8.6.bb new file mode 100644 index 0000000000..9be5bd385f --- /dev/null +++ b/recipes/xchat/xchat_2.8.6.bb @@ -0,0 +1,25 @@ +DESCRIPTION = "Full-featured IRC chat client with scripting support" +LICENSE = "GPL" +HOMEPAGE = "http://www.xchat.org" +SECTION = "x11/network" +DEPENDS = "libgcrypt zlib gtk+" +DEPENDS += "gdk-pixbuf-csource-native" +PR = "r0" + +SRC_URI = "http://www.xchat.org/files/source/2.8/xchat-${PV}.tar.bz2" + +inherit autotools + +EXTRA_OECONF = "\ + --disable-perl \ + --disable-python \ +" + +#Fix little bug that slipped into the 2.8.6 release, already fixed upstream. +do_compile_prepend() { + sed -i 's/GtkType/GType/' ${s}src/fe-gtk/xtext.{c,h} +} + +FILES_${PN} += "${datadir}/dbus-1" + +FILES_${PN}-dbg += "${libdir}/xchat/plugins/.debug" |