1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00

- Update to 0.7.6

* Numerous bugfixes
    From NEWS: "If you have tried Gfax in the past and have been
    disappointed we recommend you checkout the 0.7.6 version."
- Move to LOCALBASE
- USE_GNOME+=gnomesharp20

Project by:BSD# (http://www.mono-project.com/Mono:FreeBSD)
This commit is contained in:
Tom McLaughlin 2007-02-04 23:02:29 +00:00
parent 1cf841e29c
commit efdfda5f87
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=184189
6 changed files with 15 additions and 76 deletions

View File

@ -3,34 +3,29 @@
# Whom: John Merryweather Cooper <jmcoopr@webmail.bmi.net>
#
# $FreeBSD$
# $Id: Makefile,v 1.12 2005/11/10 01:21:02 tmclau02 Exp $
# $Id: Makefile,v 1.16 2007/01/30 00:19:26 tmclau02 Exp $
#
PORTNAME= gfax
PORTVERSION= 0.7.3
PORTREVISION= 4
PORTVERSION= 0.7.6
CATEGORIES= comms print gnome
MASTER_SITES= http://gfax.cowlug.org/
DISTNAME= ${PORTNAME}-${PORTVERSION}-1
MAINTAINER= bsd-sharp-list@forge.novell.com
COMMENT= A Mono based pop-up fax manager
BUILD_DEPENDS= ${X11BASE}/lib/mono/gtk-sharp/gtk-sharp.dll:${PORTSDIR}/x11-toolkits/gtk-sharp10 \
bash:${PORTSDIR}/shells/bash
RUN_DEPENDS= ${X11BASE}/lib/mono/gtk-sharp/gtk-sharp.dll:${PORTSDIR}/x11-toolkits/gtk-sharp10 \
${LOCALBASE}/bin/sendfax:${PORTSDIR}/comms/hylafax \
bash:${PORTSDIR}/shells/bash
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \
${LOCALBASE}/libdata/pkgconfig/evolution-sharp.pc:${PORTSDIR}/mail/evolution-sharp
RUN_DEPENDS= ${LOCALBASE}/bin/sendfax:${PORTSDIR}/comms/hylafax \
bash:${PORTSDIR}/shells/bash \
${LOCALBASE}/libdata/pkgconfig/evolution-sharp.pc:${PORTSDIR}/mail/evolution-sharp
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_X_PREFIX= yes
USE_GMAKE= yes
GNU_CONFIGURE= yes
USE_GNOME= gnomeprefix gnomehier libgnomeprint
USE_GNOME= gnomeprefix gnomehier libgnomeprint gnomesharp20
STRIP=
GCONF_SCHEMAS=gfax.schemas
GCONF_SCHEMAS= gfax.schemas
post-patch:
@${REINPLACE_CMD} -e 's|/bin/bash|${LOCALBASE}/bin/bash|' \

View File

@ -1,3 +1,3 @@
MD5 (gfax-0.7.3-1.tar.gz) = 59e1430ae0936508ef3814185890213c
SHA256 (gfax-0.7.3-1.tar.gz) = 3217ac4332db9a9a4f7d498e6ad633d4810dcb7764179b309b96e55d01649c70
SIZE (gfax-0.7.3-1.tar.gz) = 749681
MD5 (gfax-0.7.6.tar.gz) = 336a241ea236bcd44c9259f7a4e314cc
SHA256 (gfax-0.7.6.tar.gz) = 21b0950af622b46df85f9d4650f93b7f1f4a6ffbc6cc20dbac83c8b741201f95
SIZE (gfax-0.7.6.tar.gz) = 856562

View File

@ -1,6 +1,6 @@
--- Makefile.in.orig Mon Feb 28 17:13:10 2005
+++ Makefile.in Thu Jun 2 22:54:03 2005
@@ -527,7 +527,6 @@
--- Makefile.in.orig Thu Oct 26 12:56:07 2006
+++ Makefile.in Thu Oct 26 16:58:33 2006
@@ -529,7 +529,6 @@
@GCONF_SCHEMAS_INSTALL_TRUE@ GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(srcdir)/$$p ; \
@GCONF_SCHEMAS_INSTALL_TRUE@ done \
@GCONF_SCHEMAS_INSTALL_TRUE@ fi

View File

@ -1,27 +0,0 @@
--- gfax.in.orig Mon Jan 31 18:03:09 2005
+++ gfax.in Thu May 12 18:12:41 2005
@@ -11,19 +11,19 @@
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECT-
# ION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-RNAME=G$$
# don't change this spool directory, gfax uses it.
-SPOOL_DIR=@eprefix@/var/spool/gfax
+SPOOL_DIR=/var/spool/gfax
+RNAME=`mktemp -q $SPOOL_DIR/D.XXXXXX` || exit 1
STD=no
if [ -s /dev/stdin ]; then
- cat > $SPOOL_DIR/D.$RNAME
+ cat > $RNAME
STD=yes
fi
if [ $STD = "yes" ]; then
- exec mono @prefix@/lib/gfax/gfax.exe -f $SPOOL_DIR/D.$RNAME &
- #rm -f $SPOOL_DIR/D.$RNAME
+ exec mono @prefix@/lib/gfax/gfax.exe -f $RNAME &
+ #rm -f $RNAME
exit 0
fi

View File

@ -1,16 +0,0 @@
--- gfaxlpr.in.orig Mon Jan 31 18:03:09 2005
+++ gfaxlpr.in Thu May 12 18:15:39 2005
@@ -11,9 +11,9 @@
# CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECT-
# ION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
-RNAME=G$$
# don't change this spool directory, gfax uses it.
-SPOOL_DIR=@eprefix@/var/spool/gfax
+SPOOL_DIR=/var/spool/gfax
+RNAME=`mktemp -q $SPOOL_DIR/D.XXXXXX`
-cat > $SPOOL_DIR/D.$RNAME
-exec mono @prefix@/lib/gfax/gfax.exe -f $SPOOL_DIR/D.$RNAME &
+cat > $RNAME
+exec mono @prefix@/lib/gfax/gfax.exe -f $RNAME &

View File

@ -1,13 +0,0 @@
--- src/gui.cs.orig Mon Feb 28 16:08:34 2005
+++ src/gui.cs Sun Oct 23 17:31:17 2005
@@ -541,8 +541,8 @@
private int update_queue_status(string queue)
{
G_ListView view;
- Fax.FaxQueue q;
- Fax.FaxRecQueue rq;
+ Fax.FaxQueue q = null;
+ Fax.FaxRecQueue rq = null;
view = lv;