summaryrefslogtreecommitdiffstats
path: root/rules/fbv.make
diff options
context:
space:
mode:
authorGuillermo Rodríguez <guille.rodriguez@gmail.com>2018-10-05 13:31:39 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2018-10-05 23:58:56 +0200
commit841aa7b282b491f438e6bb1d314972199c5cf096 (patch)
treeee71b4f7bab0ca41d1efc2eb84a405a8524b2867 /rules/fbv.make
parent2c999beb94c8fdada1211eb676f7e69c42ac0405 (diff)
downloadptxdist-841aa7b282b491f438e6bb1d314972199c5cf096.tar.gz
ptxdist-841aa7b282b491f438e6bb1d314972199c5cf096.tar.xz
fbv: Restored package
Had been removed after one year in staging, but the reasons for removal seem to be fixed; the package now builds correctly with latest libpng, and upstream is alive. Signed-off-by: Guillermo Rodriguez <guille.rodriguez@gmail.com> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/fbv.make')
-rw-r--r--rules/fbv.make61
1 files changed, 61 insertions, 0 deletions
diff --git a/rules/fbv.make b/rules/fbv.make
new file mode 100644
index 000000000..90391b929
--- /dev/null
+++ b/rules/fbv.make
@@ -0,0 +1,61 @@
+# -*-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