diff options
author | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
commit | 4b46c1f6e891b1ddd5968536440b888661fade3e (patch) | |
tree | e0ba2c1f56f61b868bf746da5c4feabb25b800b2 /openembedded/packages/xcomposite | |
download | openembedded-core-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.gz openembedded-core-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.bz2 openembedded-core-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.xz openembedded-core-4b46c1f6e891b1ddd5968536440b888661fade3e.zip |
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/xcomposite')
3 files changed, 54 insertions, 0 deletions
diff --git a/openembedded/packages/xcomposite/xcomposite-1.0.1/autofoo.patch b/openembedded/packages/xcomposite/xcomposite-1.0.1/autofoo.patch new file mode 100644 index 000000000..072cf2521 --- /dev/null +++ b/openembedded/packages/xcomposite/xcomposite-1.0.1/autofoo.patch @@ -0,0 +1,17 @@ +Index: libXcomposite-1.0.1/configure.ac +=================================================================== +--- libXcomposite-1.0.1.orig/configure.ac 2004-01-15 03:59:12.000000000 -0500 ++++ libXcomposite-1.0.1/configure.ac 2005-01-18 17:05:25.573929256 -0500 +@@ -33,11 +33,11 @@ + dnl protocol, so Xfixes version l.n.m corresponds to protocol version l.n + dnl + AC_INIT(libXcomposite, 1.0.1, [keithp@keithp.com], libXcomposite) ++AC_CONFIG_AUX_DIR(.) + AM_INIT_AUTOMAKE([dist-bzip2]) + AM_MAINTAINER_MODE + + AM_CONFIG_HEADER(config.h) +-AC_CONFIG_AUX_DIR(.) + + # Check for progs + AC_PROG_CC diff --git a/openembedded/packages/xcomposite/xcomposite_1.0.1.bb b/openembedded/packages/xcomposite/xcomposite_1.0.1.bb new file mode 100644 index 000000000..1e8d96ce2 --- /dev/null +++ b/openembedded/packages/xcomposite/xcomposite_1.0.1.bb @@ -0,0 +1,19 @@ +SECTION = "x11/libs" +LICENSE= "BSD-X" +DEPENDS = "x11 compositeext xextensions libxfixes" +DESCRIPTION = "X Composite extension library." +PR = "r1" + +SRC_URI = "${XLIBS_MIRROR}/libXcomposite-${PV}.tar.bz2 \ + file://autofoo.patch;patch=1" +S = "${WORKDIR}/libXcomposite-${PV}" + +inherit autotools pkgconfig + +do_stage() { + oe_runmake install prefix=${STAGING_DIR} \ + bindir=${STAGING_BINDIR} \ + includedir=${STAGING_INCDIR} \ + libdir=${STAGING_LIBDIR} \ + datadir=${STAGING_DATADIR} +} diff --git a/openembedded/packages/xcomposite/xcomposite_cvs.bb b/openembedded/packages/xcomposite/xcomposite_cvs.bb new file mode 100644 index 000000000..8782dcb42 --- /dev/null +++ b/openembedded/packages/xcomposite/xcomposite_cvs.bb @@ -0,0 +1,18 @@ +PV = "0.0cvs${CVSDATE}" +LICENSE= "BSD-X" +SECTION = "x11/libs" +DEPENDS = "x11 compositeext xextensions libxfixes" +DESCRIPTION = "X Composite extension library." + +SRC_URI = "cvs://anoncvs:anoncvs@pdx.freedesktop.org/cvs/xlibs;module=Xcomposite" +S = "${WORKDIR}/Xcomposite" + +inherit autotools pkgconfig + +do_stage() { + oe_runmake install prefix=${STAGING_DIR} \ + bindir=${STAGING_BINDIR} \ + includedir=${STAGING_INCDIR} \ + libdir=${STAGING_LIBDIR} \ + datadir=${STAGING_DATADIR} +} |