[v2,10/11] Drop sendEmail add-on

Message ID 8f6a77fa-12ea-bf06-6e5e-c0364cb43266@ipfire.org
State Accepted
Commit 28cffbc51cd0e19068779756ae8e24eb0a543a5b
Headers
Series Drop unmaintained or orphaned add-ons and packages, first batch |

Commit Message

Peter Müller May 17, 2021, 9:58 p.m. UTC
  As discussed in https://wiki.ipfire.org/devel/telco/2021-05-03.

Signed-off-by: Peter Müller <peter.mueller@ipfire.org>
---
 config/rootfiles/packages/sendEmail |  1 -
 lfs/sendEmail                       | 70 -----------------------------
 2 files changed, 71 deletions(-)
 delete mode 100644 config/rootfiles/packages/sendEmail
 delete mode 100644 lfs/sendEmail
  

Patch

diff --git a/config/rootfiles/packages/sendEmail b/config/rootfiles/packages/sendEmail
deleted file mode 100644
index ee206e288..000000000
--- a/config/rootfiles/packages/sendEmail
+++ /dev/null
@@ -1 +0,0 @@ 
-usr/local/bin/sendEmail
diff --git a/lfs/sendEmail b/lfs/sendEmail
deleted file mode 100644
index ea2345f22..000000000
--- a/lfs/sendEmail
+++ /dev/null
@@ -1,70 +0,0 @@ 
-###############################################################################
-# IPFire.org    - An Open Source Firewall Solution                            #
-# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
-###############################################################################
-
-###############################################################################
-# Definitions
-###############################################################################
-
-include Config
-
-VER        = 1.56
-
-THISAPP    = sendEmail-v$(VER)
-DL_FILE    = $(THISAPP).tar.gz
-DL_FROM    = $(URL_IPFIRE)
-DIR_APP    = $(DIR_SRC)/$(THISAPP)
-TARGET     = $(DIR_INFO)/$(THISAPP)
-PROG       = sendEmail
-PAK_VER    = 2
-
-DEPS       =
-
-###############################################################################
-# Top-level Rules
-###############################################################################
-
-objects = $(DL_FILE)
-
-$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-
-$(DL_FILE)_MD5 = 5b7bec4373268fa6446fa59416bb99fb
-
-install : $(TARGET)
-
-check : $(patsubst %,$(DIR_CHK)/%,$(objects))
-
-download :$(patsubst %,$(DIR_DL)/%,$(objects))
-
-md5 : $(subst %,%_MD5,$(objects))
-
-dist: 
-	@$(PAK)
-
-###############################################################################
-# Downloading, checking, md5sum
-###############################################################################
-
-$(patsubst %,$(DIR_CHK)/%,$(objects)) :
-	@$(CHECK)
-
-$(patsubst %,$(DIR_DL)/%,$(objects)) :
-	@$(LOAD)
-
-$(subst %,%_MD5,$(objects)) :
-	@$(MD5)
-
-###############################################################################
-# Installation Details
-###############################################################################
-
-$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
-	@$(PREBUILD)
-	@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
-	cd $(DIR_APP) && cp -pvf sendEmail /usr/local/bin
-	chown root.root /usr/local/bin/sendEmail
-	chmod 755 /usr/local/bin/sendEmail
-	@rm -rf $(DIR_APP)
-	@$(POSTBUILD)
-