Path to this page:
./
comms/efax,
Collection of small programs for sending and receiving faxes
Branch: CURRENT,
Version: 0.9nb2,
Package name: efax-0.9nb2,
Maintainer: pkgsrc-usersefax is a small ANSI C/POSIX program that sends and receives faxes
using any fax modem (Class 1, 2 or 2.0).
efax is smaller and easier to install than HylaFAX or mgetty+sendfax.
As one user put it ``EFAX is a nice simple program for single user
systems.''
The ``fax'' command, a shell script, lets you send, receive, view and
print faxes. In larger systems, faxes can be sent by printing to a
``fax'' printer and received faxes can be e-mailed as MIME attachments
to an administrator for distribution. efax can also pass incoming
data calls to a getty program.
The efax package includes ``efix,'' a program to convert between
various image file formats. To fax Postscript files you will need
Ghostscript. To view faxes you can use any program that displays PGM
files. efix can convert received files to Postscript or HP Laserjet
formats for printing.
efax is distributed under the terms of the GNU General Public License.
DEINSTALL [+/-]#!/bin/sh
#
# $NetBSD: DEINSTALL,v 1.2 2003/08/30 18:40:06 jlam Exp $
case "$1" in
DEINSTALL)
if [ -d /var/spool/efax ]; then
filecount=`${FIND} /var/spool/efax -type f 2>/dev/null | wc -l`
if [ $filecount -eq 0 ]; then
${ECHO} "Removing empty efax spool directories..."
${RM} -r /var/spool/efax
fi
fi
if [ -d /var/log/efax ]; then
filecount=`${FIND} /var/log/efax -type f 2>/dev/null | wc -l`
if [ $filecount -eq 0 ]; then
${ECHO} "Removing empty efax log directories..."
${RM} -r /var/log/efax
fi
fi
;;
esac
Master sites: (Expand)
SHA1: 8965407996737e6ec2c8a198ba34811f5134b5d1
RMD160: 471112ab87cfcf11521a5ea7c0cb203a44e958c3
Filesize: 94.469 KB
Version history: (Expand)
- (2010-06-03) Updated to version: efax-0.9nb2
- (2006-04-13) Updated to version: efax-0.9nb1
- (2005-10-05) Package added to pkgsrc.se, version efax-0.9 (created)
CVS history: (Expand)
2010-06-03 14:53:47 by Stephen Borrill | Files touched by this commit (3) |  |
Log message:
Add -dMaxStripSize=0 to default ghostscript command line in efax.rc
configuration file so that efax continues to work with ghostscript 8.71 and
later (also tested backward compatibility with 8.63).
Bump PKGREVISION
|
| 2010-01-29 17:14:29 by Joerg Sonnenberger | Files touched by this commit (3) |
Log message:
DESTDIR support
|
| 2009-06-14 19:38:43 by Joerg Sonnenberger | Files touched by this commit (44) |
Log message:
Remove @dirrm entries from PLISTs
|
| 2006-04-13 01:04:21 by Joerg Sonnenberger | Files touched by this commit (4) |
Log message:
Use config file framework for efax.rc. Bump revision.
|
| 2006-03-14 02:14:36 by Johnny C. Lam | Files touched by this commit (134) |
Log message:
Modify the pkginstall framework so that it manages all aspects of
INSTALL/DEINSTALL script creation within pkgsrc.
If an INSTALL or DEINSTALL script is found in the package directory,
it is automatically used as a template for the pkginstall-generated
scripts. If instead, they should be used simply as the full scripts,
then the package Makefile should set INSTALL_SRC or DEINSTALL_SRC
explicitly, e.g.:
INSTALL_SRC= ${PKGDIR}/INSTALL
DEINSTALL_SRC= # emtpy
As part of the restructuring of the pkginstall framework internals,
we now *always* generate temporary INSTALL or DEINSTALL scripts. By
comparing these temporary scripts with minimal INSTALL/DEINSTALL
scripts formed from only the base templates, we determine whether or
not the INSTALL/DEINSTALL scripts are actually needed by the package
(see the generate-install-scripts target in bsd.pkginstall.mk).
In addition, more variables in the framework have been made private.
The *_EXTRA_TMPL variables have been renamed to *_TEMPLATE, which are
more sensible names given the very few exported variables in this
framework. The only public variables relating to the templates are:
INSTALL_SRC INSTALL_TEMPLATE
DEINSTALL_SRC DEINSTALL_TEMPLATE
HEADER_TEMPLATE
The packages in pkgsrc have been modified to reflect the changes in
the pkginstall framework.
|
| 2006-03-04 22:31:14 by Johnny C. Lam | Files touched by this commit (2257) |
Log message:
Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no
developer is officially maintaining the package.
The rationale for changing this from "tech-pkg" to \
"pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list). Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
|
| 2005-12-29 07:22:26 by Johnny C. Lam | Files touched by this commit (597) |
Log message:
Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mk
automatically detects whether we want the pkginstall machinery to be
used by the package Makefile.
|
| 2005-04-11 23:48:17 by Todd Vierling | Files touched by this commit (3539) |
Log message:
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
|