0c5b9ccaa1
git-svn-id: svn://svn.openwrt.org/openwrt/packages@8938 3c298f89-4303-0410-b956-a3cf2f4a3e73
66 lines
1.9 KiB
Makefile
66 lines
1.9 KiB
Makefile
#
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
# blogic@openwrt.org
|
|
|
|
PKG_SOURCE_URL:=http://xorg.freedesktop.org/releases/X11R7.2/src/font
|
|
|
|
_CATEGORY:=fonts
|
|
_DEPEND+="+xorg-server-X11R7.2 +font-util-X11R7.1"
|
|
include ../../common.mk
|
|
|
|
CONFIGURE_ARGS_XTRA+=--disable-iso8859-2 --disable-iso8859-3 --disable-iso8859-4 --disable-iso8859-5 --disable-iso8859-7 --disable-iso8859-8 --disable-iso8859-9 --disable-iso8859-10 --disable-iso8859-11 --disable-iso8859-13 --disable-iso8859-14 --disable-iso8859-16 --disable-koi8-r --disable-jisx0201
|
|
|
|
define Build/Compile
|
|
UTIL_DIR="$(STAGING_DIR)/usr/lib/X11/fonts/util/" make -e -C $(PKG_BUILD_DIR)
|
|
DESTDIR=$(PKG_INSTALL_DIR) $(MAKE) -C $(PKG_BUILD_DIR) $(MAKE_FLAGS) install
|
|
find $(PKG_INSTALL_DIR) -name fonts.dir | \
|
|
xargs -i -t \
|
|
sed -i '1d' {}
|
|
find $(PKG_INSTALL_DIR) -name fonts.dir | \
|
|
xargs -i -t \
|
|
mv {} {}.$(PKG_NAME)
|
|
endef
|
|
|
|
define Build/Configure
|
|
(cd $(PKG_BUILD_DIR)/$(CONFIGURE_PATH); \
|
|
if [ -x $(CONFIGURE_CMD) ]; then \
|
|
$(CP) $(SCRIPT_DIR)/config.{guess,sub} $(PKG_BUILD_DIR)/ && \
|
|
$(CONFIGURE_VARS) \
|
|
$(CONFIGURE_CMD) \
|
|
$(CONFIGURE_ARGS_XTRA) \
|
|
$(CONFIGURE_ARGS) ;\
|
|
fi \
|
|
)
|
|
endef
|
|
|
|
define Package/${PKG_NAME}/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/* $(1)/usr/lib/
|
|
endef
|
|
|
|
define Package/${PKG_NAME}/postinst
|
|
#!/bin/sh
|
|
|
|
FILE_NEW=`find $${IPKG_INSTROOT} -name fonts.dir.${PKG_NAME}`
|
|
FILE_OLD=`dirname $${FILE_NEW}`/fonts.dir
|
|
|
|
echo found $${FILE}
|
|
|
|
if [ ! -z $${FILE_NEW} ]; then
|
|
if [ -f $${FILE_OLD} ]; then
|
|
sed -i "1d" $${FILE_OLD}
|
|
cat $${FILE_NEW} >> $${FILE_OLD}
|
|
rm -rf $${FILE_NEW}
|
|
mv $${FILE_OLD} $${FILE_OLD}.tmp
|
|
else
|
|
mv $${FILE_NEW} $${FILE_OLD}.tmp
|
|
fi
|
|
(echo `wc -l $${FILE_OLD}.tmp | awk '{print($$1)}'`; cat $${FILE_OLD}.tmp) > $${FILE_OLD}
|
|
rm $${FILE_OLD}.tmp
|
|
fi
|
|
endef
|