12345678910111213141516171819202122232425262728293031323334353637 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${ADK_TOPDIR}/rules.mk
- PKG_NAME:= pango
- PKG_VERSION:= 1.36.3
- PKG_RELEASE:= 1
- PKG_HASH:= ad48e32917f94aa9d507486d44366e59355fcfd46ef86d119ddcba566ada5d22
- PKG_DESCR:= library for laying out and rendering of text
- PKG_SECTION:= libs/fonts
- PKG_DEPENDS:= libstdcxx
- PKG_BUILDDEP:= libXft glib cairo harfbuzz libstdcxx fontconfig
- HOST_BUILDDEP:= cairo-host harfbuzz-host
- PKG_URL:= http://www.pango.org/
- PKG_SITES:= ${MASTER_SITE_GNOME:=pango/1.36/}
- PKG_OPTS:= dev
- include ${ADK_TOPDIR}/mk/host.mk
- include ${ADK_TOPDIR}/mk/package.mk
- $(eval $(call HOST_template,PANGO,pango,${PKG_VERSION}-${PKG_RELEASE}))
- $(eval $(call PKG_template,PANGO,pango,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
- CONFIGURE_ENV+= ac_cv_path_EGREP="grep -E"
- CONFIGURE_ARGS+= --disable-man
- pango-install:
- $(INSTALL_DIR) $(IDIR_PANGO)/etc/pango
- $(INSTALL_DIR) $(IDIR_PANGO)/usr/lib/pango/1.8.0/modules
- $(INSTALL_DATA) ./files/pango.modules $(IDIR_PANGO)/etc/pango
- $(CP) $(WRKINST)/usr/lib/libpango*.so* $(IDIR_PANGO)/usr/lib
- $(CP) $(WRKINST)/usr/lib/pango/1.8.0/modules/*.so \
- $(IDIR_PANGO)/usr/lib/pango/1.8.0/modules
- include ${ADK_TOPDIR}/mk/host-bottom.mk
- include ${ADK_TOPDIR}/mk/pkg-bottom.mk
|