diff options
author | pav <pav@FreeBSD.org> | 2005-12-29 23:59:20 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-12-29 23:59:20 +0800 |
commit | 47d1a9eae0ff9882e040685dd1dfc40cc285026e (patch) | |
tree | 0df619f5cb416a57998ae1c662c4b25a6cd0e422 /comms/qfaxreader/Makefile | |
parent | 2f7066481092b05bcfca4c6d18384150e38fb6e6 (diff) | |
download | freebsd-ports-gnome-47d1a9eae0ff9882e040685dd1dfc40cc285026e.tar.gz freebsd-ports-gnome-47d1a9eae0ff9882e040685dd1dfc40cc285026e.tar.zst freebsd-ports-gnome-47d1a9eae0ff9882e040685dd1dfc40cc285026e.zip |
QFaxReader is a monochrome/color multipage tiff/fax files visualisation
utility. Is designed for the users who receive faxes using computers.
PR: ports/90414
Submitted by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
Diffstat (limited to 'comms/qfaxreader/Makefile')
-rw-r--r-- | comms/qfaxreader/Makefile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/comms/qfaxreader/Makefile b/comms/qfaxreader/Makefile new file mode 100644 index 000000000000..40437a37915f --- /dev/null +++ b/comms/qfaxreader/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: qfaxreader +# Date created: 2005-11-18 +# Whom: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com> +# +# $FreeBSD$ +# +# $Tecnik: ports/comms/qfaxreader/Makefile,v 1.4 2005/12/28 22:39:36 itetcu Exp $ +# + +PORTNAME= qfaxreader +DISTVERSION= 0.3RC5 +CATEGORIES= comms graphics print +MASTER_SITES= http://oss.thel.ro/${PORTNAME}/ \ + http://people.tecnik93.com/~itetcu/FreeBSD/ports/${PORTNAME}/sources/ + +MAINTAINER= itetcu@people.tecnik93.com +COMMENT= Mono/color multipage tiff/fax files visualisation/printing utility + +LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff + +USE_BZIP2= yes +GNU_CONFIGURE= yes +USE_GMAKE= yes +USE_QT_VER= 3 +CONFIGURE_ENV= QTDIR=${QT_PREFIX} PTHREAD_LIBS=${PTHREAD_LIBS} +CONFIGURE_ARGS= --with-docdir=${DOCSDIR} + +MAN1= qfaxreader.1 + +OPTIONS= GDBM "For sender-id look-up (recomended)" on + +.include <bsd.port.pre.mk> + +.if !defined(WITHOUT_GDBM) || exists(${LOCALBASE}/include/gdbm.h) +LIB_DEPENDS+= gdbm.3:${PORTSDIR}/databases/gdbm +.endif + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile" +.endif + +.include <bsd.port.post.mk> |