| 12345678910111213141516171819202122232425262728293031323334 | # 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.mkPKG_NAME:=		font-utilPKG_VERSION:=		1.1.1PKG_RELEASE:=		1PKG_MD5SUM:=		171ebfd3733aeae3af91ad57d126d29dPKG_DESCR:=		font utilPKG_SECTION:=		x11/appsPKG_URL:=		http://www.x.org/PKG_SITES:=		${MASTER_SITE_XORG}include ${TOPDIR}/mk/package.mk$(eval $(call PKG_template,FONT_UTIL,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))# XXX: Push the mapping files to a place where we can find them# again when compiling the actual fonts. This is ugly as hell,# especially as all font packages still need patching to avoid# calling pkg-config (which we don't provide) in order to# automatically find the mappings.fonts-hack:	${INSTALL_DIR} ${STAGING_TARGET_DIR}/usr/share/fonts/X11/util	${CP} ${WRKINST}/usr/share/fonts/X11/util/* \		${STAGING_TARGET_DIR}/usr/share/fonts/X11/utilpost-install: fonts-hack	${INSTALL_DIR} ${IDIR_FONT_UTIL}/usr/share/fonts/X11/util	${CP} ${WRKINST}/usr/share/fonts/X11/util/* \		${IDIR_FONT_UTIL}/usr/share/fonts/X11/utilinclude ${TOPDIR}/mk/pkg-bottom.mk
 |