summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2009-06-10 14:17:05 +0000
committerMarc Kleine-Budde <mkl@pengutronix.de>2009-06-10 14:17:05 +0000
commitb4ab5e4181e9259451a0a57780717ea969dedfbc (patch)
tree34498b501a549c018a209767d9bd7737c06a427d
parentcc8d4e12cdae0b3e5054a11fabfb5497e5dd62aa (diff)
downloadptxdist-b4ab5e4181e9259451a0a57780717ea969dedfbc.tar.gz
ptxdist-b4ab5e4181e9259451a0a57780717ea969dedfbc.tar.xz
[ethereal] deleted - RIP
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de> git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@10726 33e552b5-05e3-0310-8538-816dae2090ed
-rw-r--r--rules/ethereal.in26
-rw-r--r--rules/ethereal.make141
2 files changed, 0 insertions, 167 deletions
diff --git a/rules/ethereal.in b/rules/ethereal.in
deleted file mode 100644
index dad5347f7..000000000
--- a/rules/ethereal.in
+++ /dev/null
@@ -1,26 +0,0 @@
-## SECTION=networking
-menuconfig ETHEREAL
- bool
- depends on BROKEN
- prompt "ethereal [BROKEN] "
- select LIBPCAP
- help
- Ethereal is a network traffic analyzer for Unix
- and Unix-like operating systems. It is a tool used
- to capture packets off the wire. Ethereal decodes
- numerous protocols (too many to list).
-
-config ETHEREAL_ETHEREAL
- bool
- prompt "Gtk based ethereal"
- depends on ETHEREAL
- help
- This is the graphical version of ethereal, based on GTK+
-
-config ETHEREAL_TETHEREAL
- bool
- prompt "Text based tethereal"
- depends on ETHEREAL
- help
- This is the textmode version of ethereal.
-
diff --git a/rules/ethereal.make b/rules/ethereal.make
deleted file mode 100644
index a75d7cdf4..000000000
--- a/rules/ethereal.make
+++ /dev/null
@@ -1,141 +0,0 @@
-# -*-makefile-*-
-# $Id$
-#
-# 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_ETHEREAL) += ethereal
-
-#
-# Paths and names
-#
-ETHEREAL_VERSION = 0.10.6
-ETHEREAL = ethereal-$(ETHEREAL_VERSION)
-ETHEREAL_SUFFIX = tar.bz2
-ETHEREAL_URL = http://netmirror.org/mirror/ftp.ethereal.com/all-versions/$(ETHEREAL).$(ETHEREAL_SUFFIX)
-ETHEREAL_SOURCE = $(SRCDIR)/$(ETHEREAL).$(ETHEREAL_SUFFIX)
-ETHEREAL_DIR = $(BUILDDIR)/$(ETHEREAL)
-
-
-# ----------------------------------------------------------------------------
-# Get
-# ----------------------------------------------------------------------------
-
-ethereal_get: $(STATEDIR)/ethereal.get
-
-$(STATEDIR)/ethereal.get: $(ethereal_get_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
-
-$(ETHEREAL_SOURCE):
- @$(call targetinfo, $@)
- @$(call get, ETHEREAL)
-
-# ----------------------------------------------------------------------------
-# Extract
-# ----------------------------------------------------------------------------
-
-ethereal_extract: $(STATEDIR)/ethereal.extract
-
-$(STATEDIR)/ethereal.extract: $(ethereal_extract_deps_default)
- @$(call targetinfo, $@)
- @$(call clean, $(ETHEREAL_DIR))
- @$(call extract, ETHEREAL)
- @$(call patchin, ETHEREAL)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-ethereal_prepare: $(STATEDIR)/ethereal.prepare
-
-ETHEREAL_PATH = PATH=$(CROSS_PATH)
-ETHEREAL_ENV = $(CROSS_ENV)
-
-#
-# autoconf
-#
-ETHEREAL_AUTOCONF = $(CROSS_AUTOCONF_USR) \
- --disable-usr-local \
- --disable-threads \
- --disable-profile-build \
- --disable-gtktest \
- --disable-glibtest \
- --disable-editcap \
- --disable-mergecap \
- --disable-text2pcap \
- --disable-idl2eth \
- --disable-dftest \
- --disable-randpkt \
- --disable-ipv6 \
- --with-pcap=$(LIBPCAP_DIR)
-
-ifdef PTXCONF_ETHEREAL_ETHEREAL
-ETHEREAL_AUTOCONF += --enable-ethereal
-else
-ETHEREAL_AUTOCONF += --disable-ethereal
-endif
-ifdef PTXCONF_ETHEREAL_TETHEREAL
-ETHEREAL_AUTOCONF += --enable-tethereal
-else
-ETHEREAL_AUTOCONF += --disable-tethereal
-endif
-
-$(STATEDIR)/ethereal.prepare: $(ethereal_prepare_deps_default)
- @$(call targetinfo, $@)
- @$(call clean, $(ETHEREAL_DIR)/config.cache)
- cd $(ETHEREAL_DIR) && \
- $(ETHEREAL_PATH) $(ETHEREAL_ENV) \
- ./configure $(ETHEREAL_AUTOCONF)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Compile
-# ----------------------------------------------------------------------------
-
-ethereal_compile: $(STATEDIR)/ethereal.compile
-
-$(STATEDIR)/ethereal.compile: $(ethereal_compile_deps_default)
- @$(call targetinfo, $@)
- cd $(ETHEREAL_DIR) && $(ETHEREAL_ENV) $(ETHEREAL_PATH) make
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-ethereal_install: $(STATEDIR)/ethereal.install
-
-$(STATEDIR)/ethereal.install: $(ethereal_install_deps_default)
- @$(call targetinfo, $@)
- @$(call install, ETHEREAL)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-ethereal_targetinstall: $(STATEDIR)/ethereal.targetinstall
-
-$(STATEDIR)/ethereal.targetinstall: $(ethereal_targetinstall_deps_default)
- @$(call targetinfo, $@)
- @$(call touch, $@)
-
-# ----------------------------------------------------------------------------
-# Clean
-# ----------------------------------------------------------------------------
-
-ethereal_clean:
- rm -rf $(STATEDIR)/ethereal.*
- rm -rf $(ETHEREAL_DIR)
-
-# vim: syntax=make