diff options
Diffstat (limited to 'recipes/atk')
-rw-r--r-- | recipes/atk/atk.inc | 14 | ||||
-rw-r--r-- | recipes/atk/atk_1.18.0.bb | 8 | ||||
-rw-r--r-- | recipes/atk/atk_1.19.3.bb | 14 | ||||
-rw-r--r-- | recipes/atk/atk_1.20.0.bb | 6 |
4 files changed, 42 insertions, 0 deletions
diff --git a/recipes/atk/atk.inc b/recipes/atk/atk.inc new file mode 100644 index 0000000000..5f81cdf67e --- /dev/null +++ b/recipes/atk/atk.inc @@ -0,0 +1,14 @@ +DESCRIPTION = "An accessibility toolkit for GNOME." +SECTION = "x11/libs" +PRIORITY = "optional" +LICENSE = "LGPL" + +DEPENDS = "glib-2.0 gtk-doc-native" + +inherit autotools pkgconfig + +EXTRA_OECONF = "--disable-glibtest" + +do_stage () { + autotools_stage_all +} diff --git a/recipes/atk/atk_1.18.0.bb b/recipes/atk/atk_1.18.0.bb new file mode 100644 index 0000000000..116d8cabff --- /dev/null +++ b/recipes/atk/atk_1.18.0.bb @@ -0,0 +1,8 @@ +require atk.inc + +SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/atk/1.18/atk-${PV}.tar.bz2" + +do_stage () { + oe_libinstall -so -C atk libatk-1.0 ${STAGING_LIBDIR} + autotools_stage_includes +} diff --git a/recipes/atk/atk_1.19.3.bb b/recipes/atk/atk_1.19.3.bb new file mode 100644 index 0000000000..28adc02ea9 --- /dev/null +++ b/recipes/atk/atk_1.19.3.bb @@ -0,0 +1,14 @@ +require atk.inc + +SRC_URI = "ftp://ftp.gnome.org/pub/GNOME/sources/atk/1.19/atk-${PV}.tar.bz2" + +CFLAGS_append = "\ + -I${STAGING_INCDIR}/glib-2.0 \ + -I${STAGING_INCDIR}/glib-2.0/glib \ + -I${STAGING_INCDIR}/glib-2.0/gobject \ + " + +do_stage () { + oe_libinstall -so -C atk libatk-1.0 ${STAGING_LIBDIR} + autotools_stage_includes +} diff --git a/recipes/atk/atk_1.20.0.bb b/recipes/atk/atk_1.20.0.bb new file mode 100644 index 0000000000..bb64492337 --- /dev/null +++ b/recipes/atk/atk_1.20.0.bb @@ -0,0 +1,6 @@ +require atk.inc + +SRC_URI = "http://download.gnome.org/sources/atk/1.20/${PN}-${PV}.tar.bz2" + + + |