diff options
author | Richard Purdie <richard@openedhand.com> | 2005-09-30 14:28:18 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2005-09-30 14:28:18 +0000 |
commit | b86b4ae5db5c0fbfecb85584f486a17ec0b46437 (patch) | |
tree | 51f20ee7f13090389d69cb60110ab403f27b0d8f /openembedded/packages/libxi | |
parent | 06b04dcace4eb99f565b8959d5b7ba1a4ae7f00a (diff) | |
download | poky-b86b4ae5db5c0fbfecb85584f486a17ec0b46437.tar.gz |
Add minimo (+ deps: zip, libxi). Update puzzzles to include icon. Update meta packages with new programs.
git-svn-id: https://svn.o-hand.com/repos/poky@86 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/libxi')
-rw-r--r-- | openembedded/packages/libxi/files/autofoo.patch | 12 | ||||
-rw-r--r-- | openembedded/packages/libxi/libxi_6.0.1.bb | 20 |
2 files changed, 32 insertions, 0 deletions
diff --git a/openembedded/packages/libxi/files/autofoo.patch b/openembedded/packages/libxi/files/autofoo.patch new file mode 100644 index 0000000000..f1bce9ed7a --- /dev/null +++ b/openembedded/packages/libxi/files/autofoo.patch | |||
@@ -0,0 +1,12 @@ | |||
1 | Index: libXi-6.0.1/configure.ac | ||
2 | =================================================================== | ||
3 | --- libXi-6.0.1.orig/configure.ac 2003-11-01 04:11:49.000000000 -0500 | ||
4 | +++ libXi-6.0.1/configure.ac 2005-01-20 11:34:06.878357352 -0500 | ||
5 | @@ -8,7 +8,6 @@ | ||
6 | AM_MAINTAINER_MODE | ||
7 | |||
8 | AM_CONFIG_HEADER([config.h]) | ||
9 | -AC_CONFIG_AUX_DIR(.) | ||
10 | |||
11 | # Checks for programs. | ||
12 | AC_PROG_LIBTOOL | ||
diff --git a/openembedded/packages/libxi/libxi_6.0.1.bb b/openembedded/packages/libxi/libxi_6.0.1.bb new file mode 100644 index 0000000000..b84aef8193 --- /dev/null +++ b/openembedded/packages/libxi/libxi_6.0.1.bb | |||
@@ -0,0 +1,20 @@ | |||
1 | DESCRIPTION = "X Input Extension library" | ||
2 | LICENSE = "MIT-X" | ||
3 | SECTION = "x11/libs" | ||
4 | DEPENDS = "xproto x11 xextensions" | ||
5 | PR = "r1" | ||
6 | |||
7 | SRC_URI = "${XLIBS_MIRROR}/libXi-${PV}.tar.bz2 \ | ||
8 | file://autofoo.patch;patch=1" | ||
9 | S = "${WORKDIR}/libXi-${PV}" | ||
10 | |||
11 | inherit autotools pkgconfig | ||
12 | |||
13 | do_stage() { | ||
14 | oe_runmake install prefix=${STAGING_DIR} \ | ||
15 | bindir=${STAGING_BINDIR} \ | ||
16 | includedir=${STAGING_INCDIR} \ | ||
17 | libdir=${STAGING_LIBDIR} \ | ||
18 | datadir=${STAGING_DATADIR} | ||
19 | } | ||
20 | |||