Your message dated Tue, 01 Nov 2005 17:47:09 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#321846: fixed in myphpmoney 1.3RC3+dfsg-1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--------------------------------------
Received: (at submit) by bugs.debian.org; 7 Aug 2005 20:11:27 +0000
>From [EMAIL PROTECTED] Sun Aug 07 13:11:27 2005
Return-path: <[EMAIL PROTECTED]>
Received: from outmx010.isp.belgacom.be [195.238.3.233] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1E1rUV-00077p-00; Sun, 07 Aug 2005 13:11:27 -0700
Received: from outmx010.isp.belgacom.be (localhost [127.0.0.1])
        by outmx010.isp.belgacom.be (8.12.11/8.12.11/Skynet-OUT-2.22) with 
ESMTP id j77KBNML008392
        for <[EMAIL PROTECTED]>; Sun, 7 Aug 2005 22:11:23 +0200
        (envelope-from <[EMAIL PROTECTED]>)
Received: from arrakis (89-113.247.81.adsl.skynet.be [81.247.113.89])
        by outmx010.isp.belgacom.be (8.12.11/8.12.11/Skynet-OUT-2.22) with 
ESMTP id j77KBJmb008336;
        Sun, 7 Aug 2005 22:11:19 +0200
        (envelope-from <[EMAIL PROTECTED]>)
Received: from pdewacht by arrakis with local (Exim 3.36 #1 (Debian))
        id 1E1rUL-00071L-00; Sun, 07 Aug 2005 22:11:17 +0200
Content-Type: multipart/mixed; boundary="===============1558656567=="
MIME-Version: 1.0
From: Peter De Wachter <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: myphpmoney: contains non-free font UNVRS.TTF
X-Mailer: reportbug 3.15
Date: Sun, 07 Aug 2005 22:11:16 +0200
Message-Id: <[EMAIL PROTECTED]>
Sender: Peter De Wachter <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

This is a multi-part MIME message sent by reportbug.

--===============1558656567==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: myphpmoney
Version: 1.3RC3-13
Severity: serious
Tags: patch
Justification: Policy 2.2.1

The font UNVRS.TTF included in this package contains the following
copyright notice:
    "From the WSI-FONT Collection.  Copyright (c) 1992 WSI.  All Rights
    Reserved.  Redistribution strictly prohibited."

The attached patch modifies the code to use a different font (untested
as I didn't want to install apache and mysql, but it's completely
trivial). You should also upload a new source tarball that doesn't
contain the font.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc3
Locale: LANG=nl_BE.UTF-8, LC_CTYPE=nl_BE.UTF-8 (charmap=UTF-8)

--===============1558656567==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="myphpmoney-font.patch"

--- myphpmoney-1.3RC3/public_html/config/vars.inc.php
+++ myphpmoney-1.3RC3/public_html/config/vars.inc.php
@@ -236,7 +236,8 @@
 
   # ----------------------------- POLICE OF CARACTERE FOR GRAPHIQUE HOME 
--------------------------
 
-      define('__FONT_GRAPH__',                    'UNVRS.TTF'); ## FONT TTF
+      define('__FONT_PATH__', '/usr/share/fonts/truetype/ttf-bitstream-vera/');
+      define('__FONT_GRAPH__',                     'Vera.ttf'); ## FONT TTF
       define('__SIZE_GRAPH__',                             10); ## SIZE FOR 
THE FONT
 
   # --------------------------------------------- COLOR 
-------------------------------------------
--- myphpmoney-1.3RC3/debian/control
+++ myphpmoney-1.3RC3/debian/control
@@ -7,7 +7,7 @@
 
 Package: myphpmoney
 Architecture: all
-Depends: apache (>= 1.3.29.0.1-1) | apache-ssl (>= 1.3.29.0.1-1) | apache-perl 
(>= 1.3.29.0.1-1) | httpd, php4 (>= 4.0.3pl1) | php4-cgi (>= 4.0.3pl1) | 
libapache2-mod-php4, php4-mysql, mysql-server (>= 3.23.54a-5), mysql-client, 
wwwconfig-common (>= 0.0.19), ${misc:Depends}
+Depends: apache (>= 1.3.29.0.1-1) | apache-ssl (>= 1.3.29.0.1-1) | apache-perl 
(>= 1.3.29.0.1-1) | httpd, php4 (>= 4.0.3pl1) | php4-cgi (>= 4.0.3pl1) | 
libapache2-mod-php4, php4-mysql, mysql-server (>= 3.23.54a-5), mysql-client, 
wwwconfig-common (>= 0.0.19), ttf-bitstream-vera, ${misc:Depends}
 Description: Finance manager written in PHP
  MyPhpMoney is a finance manager written in PHP. It consists of 6 modules:
    * Count book (to enter your operations and balance your accounts) ;
--- myphpmoney-1.3RC3.orig/public_html/graph/general.php
+++ myphpmoney-1.3RC3/public_html/graph/general.php
@@ -135,7 +135,7 @@
  */
      require_once $_MPM['dir_class'].''.$_MPM['class_graph'];
      $graph = new graph(__IMG_GRAPH_W_WIDTH__,__IMG_GRAPH_H_HEIGHT__);
-     $graph->parameter['path_to_fonts'] = 
str_replace(basename($_MPM['dir_graph']),'',dirname(__FILE__)).''.$_MPM['dir_font'];
+     $graph->parameter['path_to_fonts'] = __FONT_PATH__;
 
      ## The Font Police
      $graph->parameter['title_font']      = __FONT_GRAPH__;
--- myphpmoney-1.3RC3.orig/mpm.spec
+++ myphpmoney-1.3RC3/mpm.spec
@@ -364,7 +364,6 @@
 %{docroot}/%{name}-%{version}/public_html/class/tools.class
 %{docroot}/%{name}-%{version}/public_html/graph/camembert.php
 %{docroot}/%{name}-%{version}/public_html/graph/general.php
-%{docroot}/%{name}-%{version}/public_html/fonts/UNVRS.TTF
 %{docroot}/%{name}-%{version}/public_html/export/local.xml
 %{docroot}/%{name}-%{version}/public_html/export/original.xml
 %{docroot}/%{name}-%{version}/public_html/export/cac40.txt

--===============1558656567==--

---------------------------------------
Received: (at 321846-close) by bugs.debian.org; 2 Nov 2005 01:48:56 +0000
>From [EMAIL PROTECTED] Tue Nov 01 17:48:55 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
        id 1EX7iX-0007yU-00; Tue, 01 Nov 2005 17:47:09 -0800
From: Aurelien Jarno <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#321846: fixed in myphpmoney 1.3RC3+dfsg-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 01 Nov 2005 17:47:09 -0800
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-4.8 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS,
        HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 5

Source: myphpmoney
Source-Version: 1.3RC3+dfsg-1

We believe that the bug you reported is fixed in the latest version of
myphpmoney, which is due to be installed in the Debian FTP archive:

myphpmoney_1.3RC3+dfsg-1.diff.gz
  to pool/main/m/myphpmoney/myphpmoney_1.3RC3+dfsg-1.diff.gz
myphpmoney_1.3RC3+dfsg-1.dsc
  to pool/main/m/myphpmoney/myphpmoney_1.3RC3+dfsg-1.dsc
myphpmoney_1.3RC3+dfsg-1_all.deb
  to pool/main/m/myphpmoney/myphpmoney_1.3RC3+dfsg-1_all.deb
myphpmoney_1.3RC3+dfsg.orig.tar.gz
  to pool/main/m/myphpmoney/myphpmoney_1.3RC3+dfsg.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Aurelien Jarno <[EMAIL PROTECTED]> (supplier of updated myphpmoney package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Format: 1.7
Date: Wed,  2 Nov 2005 01:54:16 +0100
Source: myphpmoney
Binary: myphpmoney
Architecture: source all
Version: 1.3RC3+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno <[EMAIL PROTECTED]>
Changed-By: Aurelien Jarno <[EMAIL PROTECTED]>
Description: 
 myphpmoney - Finance manager written in PHP
Closes: 298073 308037 312998 312999 321846
Changes: 
 myphpmoney (1.3RC3+dfsg-1) unstable; urgency=low
 .
   * Removed non-free UNVRS.TTF (closes: bug#321846)
   * Only recommends mysql-server (closes: bug#298073).
   * Fixed English templates. Thanks to Clytie Siddall (closes: bug#312999).
   * Added Czech debconf translation. Thanks to Miroslav Kure (closes:
     bug#308037).
   * Added Vietnamese debconf translation. Thanks to Clytie Siddall  (closes:
     bug#312998).
Files: 
 6b80f1cf1e29e2b1847df6e16625efa2 601 utils optional 
myphpmoney_1.3RC3+dfsg-1.dsc
 cc34a5dbb1fca3cad5720934a170d1df 628299 utils optional 
myphpmoney_1.3RC3+dfsg.orig.tar.gz
 f94ee35a46d7ff39f2b9e18250c529e4 22115 utils optional 
myphpmoney_1.3RC3+dfsg-1.diff.gz
 78355d91651e3f7120871a53da57348c 638312 utils optional 
myphpmoney_1.3RC3+dfsg-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDaBcOw3ao2vG823MRAj/nAJ0ZBa+xdjE7SM80Vse8bx4fvBeLSQCfZFpc
bplMd8mONrBd4WgVYhz1Oko=
=+sod
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to