summaryrefslogtreecommitdiffstats
path: root/rules/usplash.make
diff options
context:
space:
mode:
Diffstat (limited to 'rules/usplash.make')
-rw-r--r--rules/usplash.make76
1 files changed, 0 insertions, 76 deletions
diff --git a/rules/usplash.make b/rules/usplash.make
deleted file mode 100644
index 037a06c63..000000000
--- a/rules/usplash.make
+++ /dev/null
@@ -1,76 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2008 by Robert Schwebel
-# 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
-# 2011 by Michael Olbrich <m.olbrich@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
-#
-ifndef PTXCONF_ARCH_X86_64
-PACKAGES-$(PTXCONF_ARCH_X86)-$(PTXCONF_USPLASH) += usplash
-endif
-
-#
-# Paths and names
-#
-USPLASH_VERSION := 0.5.49
-USPLASH_MD5 := 6b1fd6c109456f47cbad1b1ccaa2bf53
-USPLASH := usplash_$(USPLASH_VERSION)
-USPLASH_SUFFIX := tar.gz
-USPLASH_URL := http://usplash.sourcearchive.com/downloads/$(USPLASH_VERSION)/$(USPLASH).$(USPLASH_SUFFIX)
-USPLASH_SOURCE := $(SRCDIR)/$(USPLASH).$(USPLASH_SUFFIX)
-USPLASH_DIR := $(BUILDDIR)/$(USPLASH)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-#
-# autoconf
-#
-USPLASH_CONF_TOOL := autoconf
-USPLASH_CONF_OPT := \
- $(CROSS_AUTOCONF_USR) \
- --enable-static \
- --enable-svga-backend \
- --disable-convert-tools
-
-$(STATEDIR)/usplash.prepare:
- @$(call targetinfo)
- @chmod +x $(USPLASH_DIR)/configure
- @$(call world/prepare, USPLASH)
- @$(call touch)
-
-USPLASH_MAKE_PAR := NO
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/usplash.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, usplash)
- @$(call install_fixup, usplash,PRIORITY,optional)
- @$(call install_fixup, usplash,SECTION,base)
- @$(call install_fixup, usplash,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
- @$(call install_fixup, usplash,DESCRIPTION,missing)
-
- @$(call install_copy, usplash, 0, 0, 0755, -, /usr/sbin/usplash)
- @$(call install_copy, usplash, 0, 0, 0755, -, /usr/sbin/usplash_write)
- @$(call install_copy, usplash, 0, 0, 0755, -, /usr/sbin/usplash_down)
- @$(call install_copy, usplash, 0, 0, 0755, -, /usr/sbin/update-usplash-theme)
- @$(call install_lib, usplash, 0, 0, 0644, libusplash)
-
- @$(call install_finish, usplash)
-
- @$(call touch)
-
-# vim: syntax=make