summaryrefslogtreecommitdiffstats
path: root/rules
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2018-10-03 11:10:28 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-10-03 11:10:28 +0200
commit4cb1127b5566236673ef93209635d6ffbc4a1ffe (patch)
treef2d019c88e5407110f590d0f75b0926ccb5a8595 /rules
parenteeab9d7c831a02f3bfa14ef95b86c5c40e661379 (diff)
downloadptxdist-4cb1127b5566236673ef93209635d6ffbc4a1ffe.tar.gz
ptxdist-4cb1127b5566236673ef93209635d6ffbc4a1ffe.tar.xz
fbv: remove after one year in staging
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules')
-rw-r--r--rules/fbv.in26
-rw-r--r--rules/fbv.make61
2 files changed, 0 insertions, 87 deletions
diff --git a/rules/fbv.in b/rules/fbv.in
deleted file mode 100644
index d6eaccad4..000000000
--- a/rules/fbv.in
+++ /dev/null
@@ -1,26 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=multimedia_framebuffer
-
-menuconfig FBV
- tristate
- select LIBPNG if FBV_PNG
- prompt "fbv "
- help
- fbv is a very simple graphic file viewer for the framebuffer console,
- capable of displaying GIF, JPEG, PNG and BMP files using libungif,
- libjpeg, and libpng. The image can be shown either in fit-to-screen or
- panning mode in 8, 15/16, and 32bpp.
-
- STAGING: remove in ptxdist-2018.07.0
- Old and obsolete, upstream gone. Fails to build with current libpng.
-
-if FBV
-
-config FBV_PNG
- bool
- prompt "png support"
- default y
-
-endif
-
diff --git a/rules/fbv.make b/rules/fbv.make
deleted file mode 100644
index 90391b929..000000000
--- a/rules/fbv.make
+++ /dev/null
@@ -1,61 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2009 by Robert Schwebel <r.schwebel@pengutronix.de>
-#
-# See CREDITS for details about who has contributed to this project.
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_FBV) += fbv
-
-#
-# Paths and names
-#
-FBV_VERSION := 1.0b-ptx3
-FBV_MD5 := 0d466f678630941fb9a38884e3402f21
-FBV := fbv-$(FBV_VERSION)
-FBV_SUFFIX := tar.bz2
-FBV_URL := http://www.pengutronix.de/software/ptxdist/temporary-src/$(FBV).$(FBV_SUFFIX)
-#FBV_URL := http://s-tech.elsat.net.pl/fbv/$(FBV).$(FBV_SUFFIX)
-FBV_SOURCE := $(SRCDIR)/$(FBV).$(FBV_SUFFIX)
-FBV_DIR := $(BUILDDIR)/$(FBV)
-FBV_LICENSE := GPL-2.0-or-later
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-FBV_CONF_TOOL := autoconf
-FBV_CONF_OPT := \
- $(CROSS_AUTOCONF_USR) \
- --$(call ptx/endis, PTXCONF_FBV_PNG)-libpng \
- --disable-debug
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/fbv.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, fbv)
- @$(call install_fixup, fbv,PRIORITY,optional)
- @$(call install_fixup, fbv,SECTION,base)
- @$(call install_fixup, fbv,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
- @$(call install_fixup, fbv,DESCRIPTION,missing)
-
- @$(call install_copy, fbv, 0, 0, 0755, -, /usr/bin/fbv)
-
- @$(call install_finish, fbv)
-
- @$(call touch)
-
-# vim: syntax=make