diff options
author | jtb <jtb> | 2002-05-04 02:03:26 +0000 |
---|---|---|
committer | jtb <jtb> | 2002-05-04 02:03:26 +0000 |
commit | 705bd081405efbc1a1e0446b3ea87517b005e5e6 (patch) | |
tree | eb257745afb740562fc39482ec2b9f7202a65927 /comms/efax-gtk/Makefile | |
parent | 1b6ce6b9e05b69c17563fb2be47a8f7d1ef4c0b7 (diff) | |
download | pkgsrc-705bd081405efbc1a1e0446b3ea87517b005e5e6.tar.gz |
Initial import of efax-gtk.
This program is a Gtk+/Gtk-- front end for the efax program for
receiving and sending faxes with a fax modem. To use it you must have
efax and ghostscript installed, and the executables (efax, efix and
gs) must be situated in the default system path.
Any files to be faxed must be in postscript format, which is the
generic printer format for Unix/Linux systems. The program will use
ghostscript to convert these into the Group 3 fax format which the fax
modem will understand.
Diffstat (limited to 'comms/efax-gtk/Makefile')
-rw-r--r-- | comms/efax-gtk/Makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/comms/efax-gtk/Makefile b/comms/efax-gtk/Makefile new file mode 100644 index 00000000000..fde11d5d538 --- /dev/null +++ b/comms/efax-gtk/Makefile @@ -0,0 +1,30 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/05/04 02:03:26 jtb Exp $ + +DISTNAME= efax-gtk-1.0.1b.src +PKGNAME= efax-gtk-1.0.1b +CATEGORIES= comms +MASTER_SITES= http://www.cvine.freeserve.co.uk/efax-gtk/ +EXTRACT_SUFX= .tgz + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.cvine.freeserve.co.uk/efax-gtk/ +COMMENT= GTK frontend for efax + +DEPENDS+= efax>=0.9:../../comms/efax + +WRKSRC= ${WRKDIR}/efax-gtk +GNU_CONFIGURE= YES +USE_BUILDLINK_ONLY= YES + +CONFIGURE_ARGS+= --with-spooldir=/var/spool/efax +CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} + +ALL_TARGET= efax-gtk + +post-extract: + ${GZIP_CMD} -d ${WRKSRC}/efax-gtk.1.gz + +.include "../../devel/libsigc++/buildlink.mk" +.include "../../x11/gtk/buildlink.mk" +.include "../../x11/gtk--/buildlink.mk" +.include "../../mk/bsd.pkg.mk" |