From a70cc1ac5ce006e4b882ef065d9ea7dd27f6769e Mon Sep 17 00:00:00 2001 From: Xiangfu Liu Date: Mon, 31 May 2010 23:00:22 +0800 Subject: [PATCH] [fbgrab] new package. fbgrab is a framebuffer screenshot program Signed-off-by: Xiangfu Liu --- fbgrab/Makefile | 42 +++++++++++++++++++ .../001-modify-makefile-for-openwrt.patch | 32 ++++++++++++++ 2 files changed, 74 insertions(+) create mode 100644 fbgrab/Makefile create mode 100644 fbgrab/patches/001-modify-makefile-for-openwrt.patch diff --git a/fbgrab/Makefile b/fbgrab/Makefile new file mode 100644 index 0000000..997e744 --- /dev/null +++ b/fbgrab/Makefile @@ -0,0 +1,42 @@ +# +# Copyright (C) 2010 Qi Hardware Inc. +# Author: Xiangfu Liu +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=fbgrab +PKG_VERSION:=1.0 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=http://hem.bredband.net/gmogmo/fbgrab/ + +PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +PKG_INSTALL:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/fbgrab + TITLE:=framebuffer screenshot program + SECTION:=utils + CATEGORY:=Utilities + DEPENDS:=+zlib +libpng + URL:=http://hem.bredband.net/gmogmo/fbgrab/ +endef + +define Package/fbgrab/description + FBGrab is a framebuffer screenshot program +endef + +TARGET_LDFLAGS+= -Wl,-rpath-link=$(STAGING_DIR)/usr/lib + +define Package/fbgrab/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/fbgrab $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,fbgrab)) diff --git a/fbgrab/patches/001-modify-makefile-for-openwrt.patch b/fbgrab/patches/001-modify-makefile-for-openwrt.patch new file mode 100644 index 0000000..ea1d0de --- /dev/null +++ b/fbgrab/patches/001-modify-makefile-for-openwrt.patch @@ -0,0 +1,32 @@ +diff --git a/Makefile b/Makefile +index 14c63cb..f4cb0b0 100644 +--- a/Makefile ++++ b/Makefile +@@ -2,15 +2,20 @@ + ### I think it's not worth to make such a small project + ### modular. So this is a simple gnu Makefile... + ### ++STRIP ?= strip ++INSTALL ?= install ++ ++CFLAGS := $(CFLAGS) -g -Wall + + fbgrab: fbgrab.c +- splint +posixlib fbgrab.c +- gcc -g -Wall fbgrab.c -lpng -lz -o fbgrab ++ $(CC) $(CFLAGS) $(LDFLAGS) fbgrab.c -lpng -lz -o fbgrab ++ $(STRIP) fbgrab + + install: +- strip fbgrab +- install fbgrab /usr/bin/fbgrab +- install fbgrab.1.man /usr/man/man1/fbgrab.1 ++ mkdir -p $(DESTDIR)/usr/bin/ ++ mkdir -p $(DESTDIR)/usr/man/man1/ ++ $(INSTALL) fbgrab $(DESTDIR)/usr/bin/fbgrab ++ $(INSTALL) fbgrab.1.man $(DESTDIR)/usr/man/man1/fbgrab.1 + + clean: +- rm -f fbgrab *~ \#*\# +\ No newline at end of file ++ rm -f fbgrab *~ \#*\#