diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 22:45:29 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 22:45:29 +0100 |
commit | 220a96f9926788ed531717f78e44fdf1e7ab3b34 (patch) | |
tree | 406f65eea71fabd8cf66c2bd1108ec63f8c349ee /package/libXcomposite | |
parent | 38af8185ea05a1c5d1abb32a68a025e3b4afa4d6 (diff) |
rework architecture / embedded systems concept
Make configuration of new targets cheap.
Just add a new file in target/arch/sys-enabled/foo.
See other files for syntax. While doing runtime tests
with the new infrastructure I've updated a lot of other
stuff:
- gcc 4.5.2
- uClibc 0.9.32-rc1 (NPTL)
- strongswan, php, miredo, parted, util-linux-ng, e2fsprogs
I promise, this is the last big fat commit this year ;)
Diffstat (limited to 'package/libXcomposite')
-rw-r--r-- | package/libXcomposite/Makefile | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/package/libXcomposite/Makefile b/package/libXcomposite/Makefile new file mode 100644 index 000000000..fc395a708 --- /dev/null +++ b/package/libXcomposite/Makefile @@ -0,0 +1,43 @@ +# This file is part of the OpenADK project. OpenADK is copyrighted +# material, please see the LICENCE file in the top-level directory. + +include $(TOPDIR)/rules.mk + +PKG_NAME:= libXcomposite +PKG_VERSION:= 0.4.3 +PKG_RELEASE:= 1 +PKG_MD5SUM:= b93dac50c86db6eba3f72e949f5bed2a +PKG_DESCR:= X composite library +PKG_SECTION:= x11/libs +PKG_BUILDDEP:= libX11 compositeproto +PKG_SITES:= ${MASTER_SITE_XORG} + +PKG_SUBPKGS:= LIBXCOMPOSITE LIBXCOMPOSITE_DEV +PKGSD_LIBXCOMPOSITE_DEV:= X11 composite headers +PKGSC_LIBXCOMPOSITE_DEV:= devel + +ifeq ($(ADK_STATIC),y) +PKG_OPTS:= libonly +endif + +include $(TOPDIR)/mk/package.mk + +$(eval $(call PKG_template,LIBXCOMPOSITE,libxcomposite,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) +$(eval $(call PKG_template,LIBXCOMPOSITE_DEV,libxcomposite-dev,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_LIBXCOMPOSITE_DEV},${PKGSC_LIBXCOMPOSITE_DEV},${PKG_OPTS})) + +SUB_INSTALLS-y:= +SUB_INSTALLS-m:= +SUB_INSTALLS-${ADK_PACKAGE_LIBXCOMPOSITE_DEV}+= libxcomposite-dev-install + +CONFIGURE_ARGS+= --disable-malloc0returnsnull + +post-install: ${SUB_INSTALLS-m} ${SUB_INSTALLS-y} + ${INSTALL_DIR} ${IDIR_LIBXCOMPOSITE}/usr/lib + ${CP} ${WRKINST}/usr/lib/libXcomposite.so* ${IDIR_LIBXCOMPOSITE}/usr/lib/ + +libxcomposite-dev-install: + ${INSTALL_DIR} ${IDIR_LIBXCOMPOSITE_DEV}/usr/include/X11/extensions + ${CP} ${WRKINST}/usr/include/X11/extensions/*.h \ + ${IDIR_LIBXCOMPOSITE_DEV}/usr/include/X11/extensions + +include ${TOPDIR}/mk/pkg-bottom.mk |