pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/comms/efax-gtk Changes 3.0.15:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6047834b0c5b
branches:  trunk
changeset: 534194:6047834b0c5b
user:      adam <adam%pkgsrc.org@localhost>
date:      Sat Oct 13 17:25:19 2007 +0000

description:
Changes 3.0.15:
* Add provision for printing and viewing the logfile
* Make the expose event handler for the drawing area of the "Fax
  from socket" notifier more efficient
* Move PrintManager class to utils sub-directory as FilePrintManager
  class and provide new TextPrintManager class
* Correctly show help dialog for GTK+ print system checkbox in
  settings dialog
* Explicitly forbid copying of IntrusiveCounter and
  IntrusiveLockCounter class objects
* Do not initialise the pthread_cond_t object in a Thread::Cond
  object if the call to pthread_condattr_setclock() fails (this
  avoids a possible resource leak)
* Improve GError handling where relevant
* Change use of g_list_append() to g_list_prepend()
* Greek translation updated.

diffstat:

 comms/efax-gtk/Makefile         |   7 +++----
 comms/efax-gtk/distinfo         |  12 ++++++------
 comms/efax-gtk/patches/patch-af |   8 ++++----
 comms/efax-gtk/patches/patch-ag |  12 ++++++------
 4 files changed, 19 insertions(+), 20 deletions(-)

diffs (75 lines):

diff -r e95b780e7867 -r 6047834b0c5b comms/efax-gtk/Makefile
--- a/comms/efax-gtk/Makefile   Sat Oct 13 16:27:40 2007 +0000
+++ b/comms/efax-gtk/Makefile   Sat Oct 13 17:25:19 2007 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.37 2007/09/21 13:03:29 wiz Exp $
+# $NetBSD: Makefile,v 1.38 2007/10/13 17:25:19 adam Exp $
 
-DISTNAME=      efax-gtk-3.0.14.src
-PKGNAME=       efax-gtk-3.0.14
-PKGREVISION=   1
+DISTNAME=      efax-gtk-3.0.15.src
+PKGNAME=       efax-gtk-3.0.15
 CATEGORIES=    comms
 MASTER_SITES=  ${MASTER_SITE_SOURCEFORGE:=efax-gtk/}
 EXTRACT_SUFX=  .tgz
diff -r e95b780e7867 -r 6047834b0c5b comms/efax-gtk/distinfo
--- a/comms/efax-gtk/distinfo   Sat Oct 13 16:27:40 2007 +0000
+++ b/comms/efax-gtk/distinfo   Sat Oct 13 17:25:19 2007 +0000
@@ -1,10 +1,10 @@
-$NetBSD: distinfo,v 1.16 2007/03/21 22:15:12 adam Exp $
+$NetBSD: distinfo,v 1.17 2007/10/13 17:25:20 adam Exp $
 
-SHA1 (efax-gtk-3.0.14.src.tgz) = 14ed24db08b5486afe57e4e9d16a467b6e832908
-RMD160 (efax-gtk-3.0.14.src.tgz) = dbe03247cf6a3a2dde15866ab17ba109841233e3
-Size (efax-gtk-3.0.14.src.tgz) = 1105717 bytes
+SHA1 (efax-gtk-3.0.15.src.tgz) = 1bbcba1b6ae46bb5134a096c795e55d3d1cc63a0
+RMD160 (efax-gtk-3.0.15.src.tgz) = 449ac43714c9eb47c9626401dad9690744ec6bae
+Size (efax-gtk-3.0.15.src.tgz) = 1126262 bytes
 SHA1 (patch-aa) = 94cd524ea47542e69d4a13704c204522f7324cd8
 SHA1 (patch-ab) = cbada5659b3a9af6862a8941c2c85ab9dccdc475
 SHA1 (patch-ac) = 5d223f5a9cacf3b60e8e5affaf9e5be8511db9be
-SHA1 (patch-af) = 2a9fd2b559e878252ba4f61a404910f0de24be25
-SHA1 (patch-ag) = a162399a42779e79bcebcd87c803d1abefcf7682
+SHA1 (patch-af) = 46a78705501aa77c6534904b53d5bc55f884a166
+SHA1 (patch-ag) = b243f8f2a50c97d51ba44c046f2f34d4418d4948
diff -r e95b780e7867 -r 6047834b0c5b comms/efax-gtk/patches/patch-af
--- a/comms/efax-gtk/patches/patch-af   Sat Oct 13 16:27:40 2007 +0000
+++ b/comms/efax-gtk/patches/patch-af   Sat Oct 13 17:25:19 2007 +0000
@@ -1,9 +1,9 @@
-$NetBSD: patch-af,v 1.2 2007/01/07 13:46:19 adam Exp $
+$NetBSD: patch-af,v 1.3 2007/10/13 17:25:20 adam Exp $
 
---- src/Makefile.in.orig       2006-11-04 18:51:26.000000000 +0100
+--- src/Makefile.in.orig       2007-07-15 11:23:11.000000000 +0200
 +++ src/Makefile.in
-@@ -229,7 +229,7 @@ noinst_HEADERS = mainwindow.h dialogs.h 
-                  fax_list_manager_icons.h libegg/eggtrayicon.h
+@@ -228,7 +228,7 @@ noinst_HEADERS = mainwindow.h dialogs.h 
+                  gpl.h fax_list_manager_icons.h libegg/eggtrayicon.h
  
  INCLUDES = -DDATADIR=\"$(datadir)\" -DRC_DIR=\"$(sysconfdir)\" -DSIGC_VERSION=@SIGC_VER@
 -AM_CXXFLAGS = -D_XOPEN_SOURCE=600 @SIGC_CFLAGS@ @GTK_CFLAGS@ @GTHREAD_CFLAGS@ @GTK_UNIX_PRINT_CFLAGS@ -I./utils
diff -r e95b780e7867 -r 6047834b0c5b comms/efax-gtk/patches/patch-ag
--- a/comms/efax-gtk/patches/patch-ag   Sat Oct 13 16:27:40 2007 +0000
+++ b/comms/efax-gtk/patches/patch-ag   Sat Oct 13 17:25:19 2007 +0000
@@ -1,13 +1,13 @@
-$NetBSD: patch-ag,v 1.3 2007/03/21 22:15:12 adam Exp $
+$NetBSD: patch-ag,v 1.4 2007/10/13 17:25:20 adam Exp $
 
---- src/utils/Makefile.in.orig 2007-03-15 23:47:05.000000000 +0100
+--- src/utils/Makefile.in.orig 2007-07-15 11:23:11.000000000 +0200
 +++ src/utils/Makefile.in
-@@ -213,7 +213,7 @@ noinst_HEADERS = fdstream.h fdstream.tcc
-                     async_queue.h
+@@ -219,7 +219,7 @@ noinst_HEADERS = fdstream.h fdstream.tcc
+                     pango_layout_iter_handle.h
  
  INCLUDES = -DDATADIR=\"$(datadir)\" -DRC_DIR=\"$(sysconfdir)\" -DSIGC_VERSION=@SIGC_VER@
--AM_CXXFLAGS = -D_XOPEN_SOURCE=600 @SIGC_CFLAGS@ @GTK_CFLAGS@ @GTHREAD_CFLAGS@ -I..
-+AM_CXXFLAGS = @SIGC_CFLAGS@ @GTK_CFLAGS@ @GTHREAD_CFLAGS@ -I..
+-AM_CXXFLAGS = -D_XOPEN_SOURCE=600 @SIGC_CFLAGS@ @GTK_CFLAGS@ @GTHREAD_CFLAGS@ @GTK_UNIX_PRINT_CFLAGS@ -I..
++AM_CXXFLAGS = @SIGC_CFLAGS@ @GTK_CFLAGS@ @GTHREAD_CFLAGS@ @GTK_UNIX_PRINT_CFLAGS@ -I..
  EXTRA_DIST = LGPL.TXT
  all: all-am
  



Home | Main Index | Thread Index | Old Index