]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/commitdiff
Drop mtools
authorMichael Tremer <michael.tremer@ipfire.org>
Mon, 26 Apr 2021 10:06:03 +0000 (10:06 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Mon, 26 Apr 2021 10:06:03 +0000 (10:06 +0000)
We are no longer generating any floppy disk images.

Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
config/rootfiles/common/mtools [deleted file]
lfs/mtools [deleted file]

diff --git a/config/rootfiles/common/mtools b/config/rootfiles/common/mtools
deleted file mode 100644 (file)
index 014d992..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-#usr/bin/amuFormat.sh
-#usr/bin/lz
-#usr/bin/mattrib
-#usr/bin/mbadblocks
-#usr/bin/mcat
-#usr/bin/mcd
-#usr/bin/mcheck
-#usr/bin/mclasserase
-#usr/bin/mcomp
-#usr/bin/mcopy
-#usr/bin/mdel
-#usr/bin/mdeltree
-#usr/bin/mdir
-#usr/bin/mdu
-#usr/bin/mformat
-#usr/bin/minfo
-#usr/bin/mkmanifest
-#usr/bin/mlabel
-#usr/bin/mmd
-#usr/bin/mmount
-#usr/bin/mmove
-#usr/bin/mpartition
-#usr/bin/mrd
-#usr/bin/mren
-#usr/bin/mshortname
-#usr/bin/mshowfat
-usr/bin/mtools
-#usr/bin/mtoolstest
-#usr/bin/mtype
-#usr/bin/mxtar
-#usr/bin/mzip
-#usr/bin/tgz
-#usr/bin/uz
-#usr/share/info/mtools.info
-#usr/share/man/man1/floppyd.1
-#usr/share/man/man1/floppyd_installtest.1
-#usr/share/man/man1/mattrib.1
-#usr/share/man/man1/mbadblocks.1
-#usr/share/man/man1/mcat.1
-#usr/share/man/man1/mcd.1
-#usr/share/man/man1/mclasserase.1
-#usr/share/man/man1/mcopy.1
-#usr/share/man/man1/mdel.1
-#usr/share/man/man1/mdeltree.1
-#usr/share/man/man1/mdir.1
-#usr/share/man/man1/mdu.1
-#usr/share/man/man1/mformat.1
-#usr/share/man/man1/minfo.1
-#usr/share/man/man1/mkmanifest.1
-#usr/share/man/man1/mlabel.1
-#usr/share/man/man1/mmd.1
-#usr/share/man/man1/mmount.1
-#usr/share/man/man1/mmove.1
-#usr/share/man/man1/mpartition.1
-#usr/share/man/man1/mrd.1
-#usr/share/man/man1/mren.1
-#usr/share/man/man1/mshortname.1
-#usr/share/man/man1/mshowfat.1
-#usr/share/man/man1/mtools.1
-#usr/share/man/man1/mtoolstest.1
-#usr/share/man/man1/mtype.1
-#usr/share/man/man1/mzip.1
-#usr/share/man/man5/mtools.5
diff --git a/lfs/mtools b/lfs/mtools
deleted file mode 100644 (file)
index 3a5a35d..0000000
+++ /dev/null
@@ -1,78 +0,0 @@
-###############################################################################
-#                                                                             #
-# IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007-2018  IPFire Team  <info@ipfire.org>                     #
-#                                                                             #
-# This program is free software: you can redistribute it and/or modify        #
-# it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation, either version 3 of the License, or           #
-# (at your option) any later version.                                         #
-#                                                                             #
-# This program is distributed in the hope that it will be useful,             #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
-# GNU General Public License for more details.                                #
-#                                                                             #
-# You should have received a copy of the GNU General Public License           #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
-#                                                                             #
-###############################################################################
-
-###############################################################################
-# Definitions
-###############################################################################
-
-include Config
-
-VER        = 4.0.27
-
-THISAPP    = mtools-$(VER)
-DL_FILE    = $(THISAPP).tar.gz
-DL_FROM    = $(URL_IPFIRE)
-DIR_APP    = $(DIR_SRC)/$(THISAPP)
-TARGET     = $(DIR_INFO)/$(THISAPP)
-
-###############################################################################
-# Top-level Rules
-###############################################################################
-
-objects = $(DL_FILE)
-
-$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-
-$(DL_FILE)_MD5 = 5895493cc71bcdc03308bb564bd2061d
-
-install : $(TARGET)
-
-check : $(patsubst %,$(DIR_CHK)/%,$(objects))
-
-download :$(patsubst %,$(DIR_DL)/%,$(objects))
-
-md5 : $(subst %,%_MD5,$(objects))
-
-###############################################################################
-# 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)
-       $(UPDATE_AUTOMAKE)
-       cd $(DIR_APP) && ./configure --prefix=/usr
-       cd $(DIR_APP) && make $(MAKETUNING)
-       cd $(DIR_APP) && make install
-       @rm -rf $(DIR_APP)
-       @$(POSTBUILD)