summaryrefslogtreecommitdiff
path: root/setfont2/Makefile
diff options
context:
space:
mode:
authorDavid Kühling <dvdkhlng@gmx.de>2010-09-18 20:47:21 +0200
committerDavid Kühling <dvdkhlng@gmx.de>2010-09-18 20:47:21 +0200
commit4bfce3b6e2ea095ea3d9f5d2d1018cc0a1e5ce09 (patch)
tree58590463ada82a27eca0889312c32450358249a8 /setfont2/Makefile
downloadqipackages-fork-4bfce3b6e2ea095ea3d9f5d2d1018cc0a1e5ce09.tar.gz
Major overhaul and cleanup. Support for .ubi image file installations.grafted
Only compile&install a minimum host Gforth for bootstrapping the target Gforth, removing strange emacs-dependencies that cropped up earlier. Image file can now be built on the nanonote using 'gforth-update-image' command. Also, Gforth is now run through a wrapper that calls 'gforth-update-image' automatically, if necessary. Also first attempts at supporting libcc C-interface libraries pre-compiled on the host. Tested to compile on amd64 and i386.
Diffstat (limited to 'setfont2/Makefile')
-rw-r--r--setfont2/Makefile57
1 files changed, 57 insertions, 0 deletions
diff --git a/setfont2/Makefile b/setfont2/Makefile
new file mode 100644
index 0000000..1dd2198
--- /dev/null
+++ b/setfont2/Makefile
@@ -0,0 +1,57 @@
+# Copyright (C) 2008 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+#
+
+include $(TOPDIR)/rules.mk
+
+PKG_NAME:=setfont2
+PKG_VERSION:=20100720
+PKG_REV:=5c45736740e5e63439692615506078427913ea18
+PKG_RELEASE:=1
+
+PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
+PKG_SOURCE_URL:=git://projects.qi-hardware.com/setfont2.git
+PKG_SOURCE_PROTO:=git
+PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
+PKG_SOURCE_VERSION:=$(PKG_REV)
+
+
+include $(INCLUDE_DIR)/package.mk
+
+define Package/setfont2
+ TITLE:=Set 32-bit color fonts with fbcon
+ SECTION:=utils
+ CATEGORY:=Utilities
+ URL:=http://projects.qi-hardware.com/index.php/p/setfont2/
+endef
+
+define Package/setfont2/description
+ Setfont2 is a utility to set 32-bit fonts on the framebuffer console ( fbcon). Fonts with 32-bit glyphs can make use of SubLCD effects to make them easier to read than black and white fonts at the same point size
+endef
+
+define Build/Configure
+ $(call Build/Configure/Default)
+
+endef
+define Package/setfont2/install
+ $(INSTALL_DIR) \
+ $(1)/etc/init.d \
+ $(1)/usr/sbin \
+ $(1)/usr/share/setfont2
+
+ $(INSTALL_BIN) \
+ $(PKG_BUILD_DIR)/setfont2 \
+ $(1)/usr/sbin/
+
+ $(INSTALL_DATA) \
+ $(PKG_BUILD_DIR)/fonts/un-fuzzy-6x10-font.pnm \
+ $(PKG_BUILD_DIR)/fonts/un-fuzzy-4x8-font.pnm \
+ $(1)/usr/share/setfont2/
+
+ $(INSTALL_BIN) \
+ ./files/$(PKG_NAME).init \
+ $(1)/etc/init.d/$(PKG_NAME)
+endef
+
+$(eval $(call BuildPackage,setfont2))