summaryrefslogtreecommitdiffstats
path: root/rules/dialog.make
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2008-05-21 07:38:13 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2008-05-21 07:38:13 +0000
commit40270be40ae7aefd5f3b2cc718bfda15df8d5f7c (patch)
tree401a38e22688674e942612893016b0dc4279241c /rules/dialog.make
parent2ed40c9434c9f1a61701b3fc3ef61d41f9c43f44 (diff)
downloadptxdist-40270be40ae7aefd5f3b2cc718bfda15df8d5f7c.tar.gz
ptxdist-40270be40ae7aefd5f3b2cc718bfda15df8d5f7c.tar.xz
* removed broken packages
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8192 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/dialog.make')
-rw-r--r--rules/dialog.make118
1 files changed, 0 insertions, 118 deletions
diff --git a/rules/dialog.make b/rules/dialog.make
deleted file mode 100644
index 3f408fab1..000000000
--- a/rules/dialog.make
+++ /dev/null
@@ -1,118 +0,0 @@
-# -*-makefile-*-
-# $Id: template 2078 2004-12-01 15:28:17Z rsc $
-#
-# Copyright (C) 2004 by Robert Schwebel
-#
-# 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_DIALOG) += dialog
-
-#
-# Paths and names
-#
-DIALOG_VERSION = 1.0-20060221
-DIALOG = dialog_$(DIALOG_VERSION)
-DIALOG_SUFFIX = tar.gz
-DIALOG_URL = ftp://ftp.us.debian.org/debian/pool/main/d/dialog/$(DIALOG).orig.$(DIALOG_SUFFIX)
-DIALOG_SOURCE = $(SRCDIR)/$(DIALOG).$(DIALOG_SUFFIX)
-DIALOG_DIR = $(BUILDDIR)/$(DIALOG)
-
-
-# ----------------------------------------------------------------------------
-# Get
-# ----------------------------------------------------------------------------
-
-dialog_get: $(STATEDIR)/dialog.get
-
-$(STATEDIR)/dialog.get: $(dialog_get_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
-
-$(DIALOG_SOURCE):
- @$(call targetinfo, $@)
- @$(call get, DIALOG)
-
-# ----------------------------------------------------------------------------
-# Extract
-# ----------------------------------------------------------------------------
-
-dialog_extract: $(STATEDIR)/dialog.extract
-
-$(STATEDIR)/dialog.extract: $(dialog_extract_deps_default)
- @$(call targetinfo, $@)
- @$(call clean, $(DIALOG_DIR))
- @$(call extract, DIALOG)
- @$(call patchin, DIALOG)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-dialog_prepare: $(STATEDIR)/dialog.prepare
-
-DIALOG_PATH = PATH=$(CROSS_PATH)
-DIALOG_ENV = $(CROSS_ENV)
-
-#
-# autoconf
-#
-DIALOG_AUTOCONF = $(CROSS_AUTOCONF_USR)
-
-$(STATEDIR)/dialog.prepare: $(dialog_prepare_deps_default)
- @$(call targetinfo, $@)
- @$(call clean, $(DIALOG_DIR)/config.cache)
- cd $(DIALOG_DIR) && \
- $(DIALOG_PATH) $(DIALOG_ENV) \
- ./configure $(DIALOG_AUTOCONF)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Compile
-# ----------------------------------------------------------------------------
-
-dialog_compile: $(STATEDIR)/dialog.compile
-
-$(STATEDIR)/dialog.compile: $(dialog_compile_deps_default)
- @$(call targetinfo, $@)
- cd $(DIALOG_DIR) && $(DIALOG_ENV) $(DIALOG_PATH) make
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-dialog_install: $(STATEDIR)/dialog.install
-
-$(STATEDIR)/dialog.install: $(dialog_install_deps_default)
- @$(call targetinfo, $@)
- @$(call install, DIALOG)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-dialog_targetinstall: $(STATEDIR)/dialog.targetinstall
-
-$(STATEDIR)/dialog.targetinstall: $(dialog_targetinstall_deps_default)
- @$(call targetinfo, $@)
- # FIXME: RSC: nothing to do on targetinstall?
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Clean
-# ----------------------------------------------------------------------------
-
-dialog_clean:
- rm -rf $(STATEDIR)/dialog.*
- rm -rf $(DIALOG_DIR)
-
-# vim: syntax=make