summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2021-07-28 11:04:36 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2021-07-28 14:47:52 +0200
commitedd0f9c1bcc8302405f276fb9acc6fe202c4c826 (patch)
treef46bd0eb6b1880b100957802c767061547947427
parent93c5b02dd6843d02763fe15a56f9bde3eb7f1e54 (diff)
downloadptxdist-edd0f9c1bcc8302405f276fb9acc6fe202c4c826.tar.gz
ptxdist-edd0f9c1bcc8302405f276fb9acc6fe202c4c826.tar.xz
mgetty: remove old package
It has been in staging for more than one year. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--patches/mgetty-1.1.36/0001-fix-install.patch205
-rw-r--r--patches/mgetty-1.1.36/0002-fix-building-on-arm64.patch22
-rw-r--r--patches/mgetty-1.1.36/0003-fix-building-with-gcc-7.x.patch78
-rw-r--r--patches/mgetty-1.1.36/series6
-rw-r--r--rules/mgetty.in80
-rw-r--r--rules/mgetty.make109
6 files changed, 0 insertions, 500 deletions
diff --git a/patches/mgetty-1.1.36/0001-fix-install.patch b/patches/mgetty-1.1.36/0001-fix-install.patch
deleted file mode 100644
index 774b3ac4c..000000000
--- a/patches/mgetty-1.1.36/0001-fix-install.patch
+++ /dev/null
@@ -1,205 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Sun, 15 Jan 2017 12:02:05 +0100
-Subject: [PATCH] fix install
-
-prefix all paths with DESTDIR when installing.
-install all necessary stuff
-don't chown dirs
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- Makefile | 77 +++++++++++++++++++++++++++++--------------------------
- callback/Makefile | 4 +--
- fax/Makefile | 25 +++++++++---------
- g3/Makefile | 4 +--
- 4 files changed, 57 insertions(+), 53 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 97ea1986dce9..401ae6e4b37b 100644
---- a/Makefile
-+++ b/Makefile
-@@ -580,56 +580,54 @@ install.bin: mgetty sendfax newslock \
- #
- # binaries
- #
-- -test -d $(BINDIR) || ( ./mkidirs $(BINDIR) ; chmod 755 $(BINDIR) )
-- $(INSTALL) -m 755 newslock $(BINDIR)
-+ -test -d $(DESTDIR)$(BINDIR) || ( ./mkidirs $(DESTDIR)$(BINDIR) ; chmod 755 $(DESTDIR)$(BINDIR) )
-+ $(INSTALL) -m 755 newslock $(DESTDIR)$(BINDIR)
-
-- -test -d $(SBINDIR) || ( ./mkidirs $(SBINDIR) ; chmod 755 $(SBINDIR) )
-- -mv -f $(SBINDIR)/mgetty $(SBINDIR)/mgetty.old
-- -mv -f $(SBINDIR)/sendfax $(SBINDIR)/sendfax.old
-- $(INSTALL) -s -m 700 mgetty $(SBINDIR)
-- $(INSTALL) -s -m 755 sendfax $(SBINDIR)
-+ -test -d $(DESTDIR)$(SBINDIR) || ( ./mkidirs $(DESTDIR)$(SBINDIR) ; chmod 755 $(DESTDIR)$(SBINDIR) )
-+ -mv -f $(DESTDIR)$(SBINDIR)/mgetty $(DESTDIR)$(SBINDIR)/mgetty.old
-+ -mv -f $(DESTDIR)$(SBINDIR)/sendfax $(DESTDIR)$(SBINDIR)/sendfax.old
-+ $(INSTALL) -s -m 700 mgetty $(DESTDIR)$(SBINDIR)
-+ $(INSTALL) -s -m 755 sendfax $(DESTDIR)$(SBINDIR)
- #
- # data files + directories
- #
-- test -d $(LIBDIR) || \
-- ( ./mkidirs $(LIBDIR) && chmod 755 $(LIBDIR) )
-- test -d $(CONFDIR) || \
-- ( ./mkidirs $(CONFDIR) && chmod 755 $(CONFDIR))
-- test -f $(CONFDIR)/login.config || \
-- $(INSTALL) -o root -m 600 login.config $(CONFDIR)/
-- test -f $(CONFDIR)/mgetty.config || \
-- $(INSTALL) -o root -m 600 mgetty.config $(CONFDIR)/
-- test -f $(CONFDIR)/sendfax.config || \
-- $(INSTALL) -o root -m 644 sendfax.config $(CONFDIR)/
-- test -f $(CONFDIR)/dialin.config || \
-- $(INSTALL) -o root -m 600 dialin.config $(CONFDIR)/
-- test -f $(CONFDIR)/faxrunq.config || \
-- $(INSTALL) -o root -m 644 faxrunq.config $(CONFDIR)/
-+ test -d $(DESTDIR)$(LIBDIR) || \
-+ ( ./mkidirs $(DESTDIR)$(LIBDIR) && chmod 755 $(DESTDIR)$(LIBDIR) )
-+ test -d $(DESTDIR)$(CONFDIR) || \
-+ ( ./mkidirs $(DESTDIR)$(CONFDIR) && chmod 755 $(DESTDIR)$(CONFDIR))
-+ test -f $(DESTDIR)$(CONFDIR)/login.config || \
-+ $(INSTALL) -o root -m 600 login.config $(DESTDIR)$(CONFDIR)/
-+ test -f $(DESTDIR)$(CONFDIR)/mgetty.config || \
-+ $(INSTALL) -o root -m 600 mgetty.config $(DESTDIR)$(CONFDIR)/
-+ test -f $(DESTDIR)$(CONFDIR)/sendfax.config || \
-+ $(INSTALL) -o root -m 644 sendfax.config $(DESTDIR)$(CONFDIR)/
-+ test -f $(DESTDIR)$(CONFDIR)/dialin.config || \
-+ $(INSTALL) -o root -m 600 dialin.config $(DESTDIR)$(CONFDIR)/
-+ test -f $(DESTDIR)$(CONFDIR)/faxrunq.config || \
-+ $(INSTALL) -o root -m 644 faxrunq.config $(DESTDIR)$(CONFDIR)/
- #
- # test for outdated stuff
- #
-- -@if test -f $(LIBDIR)/mgetty.login ; \
-+ -@if test -f $(DESTDIR)$(LIBDIR)/mgetty.login ; \
- then \
-- echo "WARNING: the format of $(LIBDIR)/mgetty.login has " ;\
-+ echo "WARNING: the format of $(DESTDIR)$(LIBDIR)/mgetty.login has " ;\
- echo "been changed. Because of this, to avoid confusions, it's called " ;\
-- echo "$(CONFDIR)/login.config now." ;\
-+ echo "$(DESTDIR)$(CONFDIR)/login.config now." ;\
- echo "" ;\
- fi
- #
- # fax spool directories
- #
-- test -d $(spool) || \
-- ( mkdir $(spool) && chmod 755 $(spool) )
-- test -d $(FAX_SPOOL) || \
-- ( mkdir $(FAX_SPOOL) && \
-- chown $(FAX_OUT_USER) $(FAX_SPOOL) && \
-- chmod 755 $(FAX_SPOOL) )
-- test -d $(FAX_SPOOL_IN) || \
-- ( mkdir $(FAX_SPOOL_IN) && chmod 755 $(FAX_SPOOL_IN) )
-- test -d $(FAX_SPOOL_OUT) || \
-- mkdir $(FAX_SPOOL_OUT)
-- chown $(FAX_OUT_USER) $(FAX_SPOOL_OUT)
-- chmod 755 $(FAX_SPOOL_OUT)
-+ test -d $(DESTDIR)$(spool) || \
-+ ( ./mkidirs $(DESTDIR)$(spool) && chmod 755 $(DESTDIR)$(spool) )
-+ test -d $(DESTDIR)$(FAX_SPOOL) || \
-+ ( ./mkidirs $(DESTDIR)$(FAX_SPOOL) && \
-+ chmod 755 $(DESTDIR)$(FAX_SPOOL) )
-+ test -d $(DESTDIR)$(FAX_SPOOL_IN) || \
-+ ( ./mkidirs $(DESTDIR)$(FAX_SPOOL_IN) && chmod 755 $(DESTDIR)$(FAX_SPOOL_IN) )
-+ test -d $(DESTDIR)$(FAX_SPOOL_OUT) || \
-+ ./mkidirs $(DESTDIR)$(FAX_SPOOL_OUT)
-+ chmod 755 $(DESTDIR)$(FAX_SPOOL_OUT)
- #
- # g3 tool programs
- #
-@@ -644,6 +642,13 @@ install.bin: mgetty sendfax newslock \
- BINDIR=$(BINDIR) SBINDIR=$(SBINDIR) \
- LIBDIR=$(LIBDIR) CONFDIR=$(CONFDIR)
- #
-+# callback
-+#
-+ cd callback ; $(MAKE) install INSTALL="$(INSTALL)" \
-+ FAX_OUT_USER=$(FAX_OUT_USER) \
-+ BINDIR=$(BINDIR) SBINDIR=$(SBINDIR) \
-+ LIBDIR=$(LIBDIR) CONFDIR=$(CONFDIR)
-+#
- # compatibility
- #
- if [ ! -z "$(INSTALL_MECHO)" ] ; then \
-diff --git a/callback/Makefile b/callback/Makefile
-index 061e63a9f966..577e0dfa6fe2 100644
---- a/callback/Makefile
-+++ b/callback/Makefile
-@@ -37,7 +37,7 @@ clean:
- # install programs
- #
- install: all
-- $(INSTALL) -s -m 700 -o root callback $(SBINDIR)
-- $(INSTALL) -s -m 4711 -o root ct $(BINDIR)
-+ $(INSTALL) -s -m 700 -o root callback $(DESTDIR)$(SBINDIR)
-+ $(INSTALL) -s -m 4711 -o root ct $(DESTDIR)$(BINDIR)
-
- # source modules
-diff --git a/fax/Makefile b/fax/Makefile
-index 89ceccb611f8..6438c0f8461c 100644
---- a/fax/Makefile
-+++ b/fax/Makefile
-@@ -53,25 +53,24 @@ install: all
- # programs / scripts
- #
- -for i in $(FAX_SCRIPTS); do \
-- mv -f $(BINDIR)/$$i $(BINDIR)/$$i.old 2>/dev/null ; \
-- $(INSTALL) -m 755 $$i $(BINDIR) ; \
-+ mv -f $(DESTDIR)$(BINDIR)/$$i $(DESTDIR)$(BINDIR)/$$i.old 2>/dev/null ; \
-+ $(INSTALL) -m 755 $$i $(DESTDIR)$(BINDIR) ; \
- done
-- $(INSTALL) -m 755 faxrunqd $(SBINDIR)
-- $(INSTALL) faxq-helper $(LIBDIR)
-- chown $(FAX_OUT_USER) $(LIBDIR)/faxq-helper
-- chmod 4711 $(LIBDIR)/faxq-helper
-+ $(INSTALL) -m 755 faxrunqd $(DESTDIR)$(SBINDIR)
-+ $(INSTALL) faxq-helper $(DESTDIR)$(LIBDIR)
-+ chmod 4711 $(DESTDIR)$(LIBDIR)/faxq-helper
- #
- # data files
- #
-- $(INSTALL) -m 644 cour25.pbm $(LIBDIR)
-- $(INSTALL) -m 644 cour25n.pbm $(LIBDIR)
-- -test -f $(CONFDIR)/faxheader || \
-- $(INSTALL) -m 644 faxheader $(CONFDIR)
-+ $(INSTALL) -m 644 cour25.pbm $(DESTDIR)$(LIBDIR)
-+ $(INSTALL) -m 644 cour25n.pbm $(DESTDIR)$(LIBDIR)
-+ -test -f $(DESTDIR)$(CONFDIR)/faxheader || \
-+ $(INSTALL) -m 644 faxheader $(DESTDIR)$(CONFDIR)
- #
- # /etc/magic
- #
-- -@test -r /etc/magic && \
-- if grep "string.*P1" /etc/magic >/dev/null ; then : ; \
-+ -@test -r $(DESTDIR)/etc/magic && \
-+ if grep "string.*P1" $(DESTDIR)/etc/magic >/dev/null ; then : ; \
- else \
- echo "WARNING: no PBM magic (string P1) found in /etc/magic" ; \
- echo " maybe you should append the definitions in \`\`fax/etc-magic''." ; \
-@@ -79,4 +78,4 @@ install: all
- #
- # faxspool.rules sample file
- #
-- $(INSTALL) -m 644 faxspool.rules $(CONFDIR)/faxspool.rules.sample
-+ $(INSTALL) -m 644 faxspool.rules $(DESTDIR)$(CONFDIR)/faxspool.rules.sample
-diff --git a/g3/Makefile b/g3/Makefile
-index 33082e1e9692..70e2f57cd534 100644
---- a/g3/Makefile
-+++ b/g3/Makefile
-@@ -37,12 +37,12 @@ install: all
- # install programs
- #
- for f in $(G3_PROGRAMS) ; do \
-- $(INSTALL) -s -m 755 $$f $(BINDIR) ; \
-+ $(INSTALL) -s -m 755 $$f $(DESTDIR)$(BINDIR) ; \
- done
- #
- # make symlink for "g3topbm" (so third-party fax viewers won't fail)
- #
-- -cd $(BINDIR) ; \
-+ -cd $(DESTDIR)$(BINDIR) ; \
- test -x g3topbm || ln -s g32pbm g3topbm
-
-
diff --git a/patches/mgetty-1.1.36/0002-fix-building-on-arm64.patch b/patches/mgetty-1.1.36/0002-fix-building-on-arm64.patch
deleted file mode 100644
index cd91ebee9..000000000
--- a/patches/mgetty-1.1.36/0002-fix-building-on-arm64.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-From: Michael Olbrich <m.olbrich@pengutronix.de>
-Date: Sun, 15 Jan 2017 12:06:11 +0100
-Subject: [PATCH] fix building on arm64
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- mgetty.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/mgetty.h b/mgetty.h
-index 14845207421a..811e5519d1b4 100644
---- a/mgetty.h
-+++ b/mgetty.h
-@@ -198,7 +198,7 @@ typedef unsigned char uch;
- */
- #if defined(__alpha__) || defined(__sparc64__) || \
- defined(__ia64__) || defined(__s390x__) || defined(__x86_64__) || \
-- defined(__powerpc64__)
-+ defined(__powerpc64__) || defined(__aarch64__)
- # define PTR_IS_LONG
- #endif
-
diff --git a/patches/mgetty-1.1.36/0003-fix-building-with-gcc-7.x.patch b/patches/mgetty-1.1.36/0003-fix-building-with-gcc-7.x.patch
deleted file mode 100644
index 7783883b6..000000000
--- a/patches/mgetty-1.1.36/0003-fix-building-with-gcc-7.x.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From: Hilko Bengen <bengen@debian.org>
-Date: Wed, 7 Feb 2018 10:59:18 +0100
-Subject: [PATCH] fix building with gcc 7.x
-
-make some functions static
-
-Patch imported from Debian.
-
-Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
----
- g3/g3cat.c | 3 +++
- g3/pbm2g3.c | 4 ++++
- 2 files changed, 7 insertions(+)
-
-diff --git a/g3/g3cat.c b/g3/g3cat.c
-index 8a4b708afa7e..4205d332cde7 100644
---- a/g3/g3cat.c
-+++ b/g3/g3cat.c
-@@ -67,6 +67,7 @@ void putcode _P2( (code, len), int code, int len )
- }
-
- #ifdef __GNUC__
-+static
- inline
- #endif
- void putwhitespan _P1( (l), int l )
-@@ -98,6 +99,7 @@ void putwhitespan _P1( (l), int l )
- }
-
- #ifdef __GNUC__
-+static
- inline
- #endif
- void putblackspan _P1( (l), int l )
-@@ -129,6 +131,7 @@ void putblackspan _P1( (l), int l )
- }
-
- #ifdef __GNUC__
-+static
- inline
- #endif
- void puteol _P0( void ) /* write byte-aligned EOL */
-diff --git a/g3/pbm2g3.c b/g3/pbm2g3.c
-index 283a72867312..7dc81a808bfc 100644
---- a/g3/pbm2g3.c
-+++ b/g3/pbm2g3.c
-@@ -40,6 +40,7 @@ static unsigned int out_hibit = 0;
- static int out_byte_tab[ 256 ]; /* for g3 byte reversal */
-
- #ifdef __GNUC__
-+static
- inline
- #endif
- void putcode _P2( (code, len), int code, int len )
-@@ -60,6 +61,7 @@ void putcode _P2( (code, len), int code, int len )
- }
-
- #ifdef __GNUC__
-+static
- inline
- #endif
- void puteol _P0( void ) /* write byte-aligned EOL */
-@@ -69,6 +71,7 @@ void puteol _P0( void ) /* write byte-aligned EOL */
- }
-
- #ifdef __GNUC__
-+static
- inline
- #endif
- void putwhitespan _P1( (l), int l )
-@@ -100,6 +103,7 @@ void putwhitespan _P1( (l), int l )
- }
-
- #ifdef __GNUC__
-+static
- inline
- #endif
- void putblackspan _P1( (l), int l )
diff --git a/patches/mgetty-1.1.36/series b/patches/mgetty-1.1.36/series
deleted file mode 100644
index a518c09ac..000000000
--- a/patches/mgetty-1.1.36/series
+++ /dev/null
@@ -1,6 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-fix-install.patch
-0002-fix-building-on-arm64.patch
-0003-fix-building-with-gcc-7.x.patch
-# 96cac79d77bdaba764aa0a1ae734b06b - git-ptx-patches magic
diff --git a/rules/mgetty.in b/rules/mgetty.in
deleted file mode 100644
index b8c969773..000000000
--- a/rules/mgetty.in
+++ /dev/null
@@ -1,80 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=communication
-#
-menuconfig MGETTY
- tristate
- prompt "mgetty & sendfax "
- help
- mgetty+sendfax is a reliable and proven fax send and receive solution.
-
- mgetty is a modem-aware getty. It supports modems with the Hayes AT
- command set and is especially designed for supporting modems that
- are used to send faxes and to dial out as well as dial in. These
- features are not required for a serial console.
-
- Sendfax is designed to be able to send exactly one fax (consisting
- of multiple pages) to exactly one fax machine, but it is usable from
- within shell scripts. Its input are pages in "g3" format, either
- created with ghostscript or with pbm2g3.
-
- STAGING: remove in PTXdist 2021.05.0
-
- Really old version that needs to be updated, and license is unclear
- (README says "this is GPL" but doesn't say which version, and no GPL
- text is included)
-
-if MGETTY
-
-config MGETTY_CONFIG
- prompt "Name of policy.h file to be used"
- string
- default "${MGETTY_DIR}/policy.h-dist"
- help
- policy.h-dist is the default policy.h file provided by the
- distribution. It will be renamed to policy.h and used if
- no other policy.h file is supplied.
-
-config MGETTY_INSTALL_CONFIG
- prompt "Install default config files to ${ROOTDIR}/etc/mgetty+sendfax"
- bool
- default y
- help
- Enabling this option installs mgetty's default config files onto your target.
- Say N here if you want to use your own files and make sure they're installed
- by your vendortweaks.
-
-config SENDFAX
- prompt "Install sendfax and G3 helper tools"
- bool
- default y
- help
- Choose here if you want to install sendfax in addition
- to mgetty. If you only need mgetty for its getty
- functionality, but are not going to use faxes, you can
- opt to omit sendfax.
-
-config SENDFAX_SPOOL
- bool
- default y
- prompt "Install faxspooling programs"
- help
- This will install
- /usr/bin/faxspool
- /usr/bin/faxrunq
- /usr/bin/faxq
- /usr/bin/faxrm
- /usr/bin/faxrunqd
- /usr/lib/mgetty+sendfax/faxq-helper
-
-
-config MGETTY_CALLBACK
- prompt "Install callback program"
- bool
- help
- The callback utility of mgetty is able to call
- back after a login 'attempt' based on entries in
- /etc/mgetty+sendfax/login.conf
-
-endif
-
diff --git a/rules/mgetty.make b/rules/mgetty.make
deleted file mode 100644
index 657d544cc..000000000
--- a/rules/mgetty.make
+++ /dev/null
@@ -1,109 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2003 by BSP
-# (C) 2010 by Michael Olbrich <m.olbrich@pengutronix.de>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_MGETTY) += mgetty
-
-#
-# Paths and names
-#
-MGETTY_VERSION := 1.1.36
-MGETTY_MD5 := 0320e98c6b86bcca48fc5f355b94ead4
-MGETTY_DATE := Jun15
-MGETTY := mgetty-$(MGETTY_VERSION)
-MGETTY_SUFFIX := tar.gz
-MGETTY_URL := ftp://alpha.greenie.net/pub/mgetty/source/1.1/mgetty$(MGETTY_VERSION)-$(MGETTY_DATE).$(MGETTY_SUFFIX)
-MGETTY_SOURCE := $(SRCDIR)/mgetty$(MGETTY_VERSION)-$(MGETTY_DATE).$(MGETTY_SUFFIX)
-MGETTY_DIR := $(BUILDDIR)/$(MGETTY)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/mgetty.prepare:
- @$(call targetinfo)
- cp $(PTXCONF_MGETTY_CONFIG) $(MGETTY_DIR)/policy.h
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Compile
-# ----------------------------------------------------------------------------
-
-MGETTY_DIRS := \
- prefix=/usr \
- CONFDIR=/etc/mgetty+sendfax
-
-MGETTY_MAKE_PAR := NO
-MGETTY_MAKE_OPT := \
- $(CROSS_ENV) \
- $(MGETTY_DIRS) \
- bin-all \
- mgetty.config \
- login.config \
- sendfax.config
-
-$(STATEDIR)/mgetty.compile:
- @$(call targetinfo)
-# FIXME: mol: this should be a host-tool
- cd $(MGETTY_DIR) && make mksed
- @$(call world/compile, MGETTY)
- @$(call touch)
-
-MGETTY_INSTALL_OPT := install.bin $(MGETTY_DIRS)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/mgetty.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, mgetty)
- @$(call install_fixup, mgetty,PRIORITY,optional)
- @$(call install_fixup, mgetty,SECTION,base)
- @$(call install_fixup, mgetty,AUTHOR,"Robert Schwebel <r.schwebel@pengutronix.de>")
- @$(call install_fixup, mgetty,DESCRIPTION,missing)
-
- @$(call install_copy, mgetty, 0, 0, 0700, -, /usr/sbin/mgetty)
-
-ifdef PTXCONF_MGETTY_INSTALL_CONFIG
- @$(call install_copy, mgetty, 0, 0, 0600, -, /etc/mgetty+sendfax/login.config, n)
- @$(call install_copy, mgetty, 0, 0, 0600, -, /etc/mgetty+sendfax/mgetty.config, n)
- @$(call install_copy, mgetty, 0, 0, 0600, -, /etc/mgetty+sendfax/dialin.config, n)
-endif
-ifdef PTXCONF_MGETTY_CALLBACK
- @$(call install_copy, mgetty, 0, 0, 4755, -, /usr/sbin/callback)
-endif
-ifdef PTXCONF_SENDFAX
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/sbin/sendfax)
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/bin/pbm2g3)
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/bin/g3cat)
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/bin/g32pbm)
-ifdef PTXCONF_MGETTY_INSTALL_CONFIG
- @$(call install_copy, mgetty, 0, 0, 0644, -, /etc/mgetty+sendfax/sendfax.config, n)
-endif
-ifdef PTXCONF_SENDFAX_SPOOL
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/bin/faxspool, n)
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/bin/faxrunq, n)
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/bin/faxq, n)
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/bin/faxrm, n)
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/sbin/faxrunqd, n)
- @$(call install_copy, mgetty, 0, 0, 0755, -, /usr/lib/mgetty+sendfax/faxq-helper)
-endif
-ifdef PTXCONF_MGETTY_INSTALL_CONFIG
- @$(call install_copy, mgetty, 0, 0, 0644, -, /etc/mgetty+sendfax/faxrunq.config, n)
-endif
-endif
- @$(call install_finish, mgetty)
-
- @$(call touch)
-
-# vim: syntax=make