2010-10-18 19:39:48 +03:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=fbida
|
|
|
|
PKG_VERSION:=2.07
|
|
|
|
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://dl.bytesex.org/releases/fbida/
|
|
|
|
PKG_MD5SUM:=3e05910fb7c1d9b2bd3e272d96db069c
|
|
|
|
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2011-02-06 20:57:17 +02:00
|
|
|
include $(INCLUDE_DIR)/nls.mk
|
2010-10-18 19:39:48 +03:00
|
|
|
|
|
|
|
define Package/fbida
|
|
|
|
SUBMENU:=fbida
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
|
|
|
URL:=http://linux.bytesex.org/fbida/
|
2012-10-12 10:35:31 +03:00
|
|
|
DEPENDS:=+libpng +libtiff +libexif $(ICONV_DEPENDS) +dejavu-fonts-ttf +libcurl +libfreetype +fontconfig
|
2010-10-18 19:39:48 +03:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/fbida/description
|
|
|
|
The fbida project contains a few applications for viewing and editing images
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/fbi
|
|
|
|
$(call Package/fbida)
|
|
|
|
TITLE:=This is a image viewer for the linux framebuffer console.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/fbgs
|
|
|
|
$(call Package/fbida)
|
|
|
|
TITLE:=A wrapper script for viewing ps/pdf files on the framebuffer console using fbi.
|
|
|
|
DEPENDS:=+fbi +ghostscript
|
|
|
|
endef
|
|
|
|
|
2011-02-06 20:57:17 +02:00
|
|
|
TARGET_LDFLAGS+=-Wl,-rpath-link=$(STAGING_DIR)/usr/lib -liconv
|
2010-10-18 19:39:48 +03:00
|
|
|
|
|
|
|
define Package/fbi/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/{fbi,exiftran} $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/fbgs/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/fbgs $(1)/usr/bin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,fbi))
|
|
|
|
$(eval $(call BuildPackage,fbgs))
|