summaryrefslogtreecommitdiff
path: root/package/pixman
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-02-24 17:41:36 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2011-02-24 17:41:36 +0100
commit0aabef127155575e8c8d660605f9401ab15356aa (patch)
treeb8cd5f06c60cd4e95fd7a2923dabb3b831dd93b3 /package/pixman
parent0b09c2710166bd95ac9033b048bb6cbf7b4de7c2 (diff)
allow native build of a lot of packages
STAGING_TARGET_DIR is used for package Makefile's for include and library search path's. STAGING_DIR is used for common code in mk/ or Makefile/rules.mk. STAGING_TARGET_DIR is /usr when native builds are used.
Diffstat (limited to 'package/pixman')
-rw-r--r--package/pixman/Makefile17
1 files changed, 15 insertions, 2 deletions
diff --git a/package/pixman/Makefile b/package/pixman/Makefile
index d79684b2d..50b61a3a9 100644
--- a/package/pixman/Makefile
+++ b/package/pixman/Makefile
@@ -11,16 +11,29 @@ PKG_DESCR:= Pixel manipulation library
PKG_SECTION:= x11/libs
PKG_SITES:= http://www.cairographics.org/releases/
+PKG_SUBPKGS:= PIXMAN PIXMAN_DEV
+PKGSC_PIXMAN_DEV:= devel
+PKGSD_PIXMAN_DEV:= Pixel manipulation headers
+
ifeq ($(ADK_STATIC),y)
PKG_OPTS:= libonly
endif
include $(TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,PIXMAN,${PKG_NAME},$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
+$(eval $(call PKG_template,PIXMAN,pixman,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
+$(eval $(call PKG_template,PIXMAN_DEV,pixman-dev,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_PIXMAN_DEV},${PKGSC_PIXMAN_DEV},${PKG_OPTS}))
-post-install:
+pixman-install:
${INSTALL_DIR} ${IDIR_PIXMAN}/usr/lib
${CP} ${WRKINST}/usr/lib/libpixman-1.so* ${IDIR_PIXMAN}/usr/lib/
+pixman-dev-install:
+ ${INSTALL_DIR} ${IDIR_PIXMAN_DEV}/usr/include
+ ${CP} ${WRKINST}/usr/include/* \
+ ${IDIR_PIXMAN_DEV}/usr/include
+ ${INSTALL_DIR} ${IDIR_PIXMAN_DEV}/usr/lib/pkgconfig
+ ${INSTALL_DATA} ${WRKINST}/usr/lib/pkgconfig/*.pc \
+ ${IDIR_PIXMAN_DEV}/usr/lib/pkgconfig
+
include ${TOPDIR}/mk/pkg-bottom.mk