New Ticket     Tickets     Wiki     Browse Source     Timeline     Roadmap     Ticket Reports     Search

Ticket #25698: patch-gourmet-submission.diff

File patch-gourmet-submission.diff, 8.1 KB (added by divinenephron@…, 3 years ago)
  • gnome/gourmet/Portfile

    diff -Nurd ports/gnome/gourmet/Portfile ports-patched/gnome/gourmet/Portfile
    old new  
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 
     2# $Id$ 
     3PortSystem          1.0 
     4PortGroup           python26 1.0 
     5 
     6name                gourmet 
     7version             0.15.5 
     8categories-append   gnome recipe 
     9maintainers         nomaintainer 
     10description         A simple but powerful recipe-managing application.  
     11long_description    Gourmet allows you to collect, search and organize your recipes, and to automatically generate shopping lists from your collection. The latest version also allows you to calculate nutritional information for your recipes using the USDA food database (or entering custom information by hand). 
     12 
     13homepage            http://grecipe-manager.sourceforge.net/ 
     14platforms           darwin 
     15master_sites        sourceforge:grecipe-manager 
     16checksums           md5     a0e251e1797605afbb3d5ede0258ddba \ 
     17                    sha1    19a26089d86f0f76c1140cda0f838b23b2d1217e \ 
     18                    rmd160  30ceccc21f840218045be1773dd8d71504401248 
     19 
     20depends_lib-append  port:py26-gnome \ 
     21                    port:gnome-python26-extras \ 
     22                    port:libglade2 \ 
     23                    port:py26-pil \ 
     24                    port:py26-sqlalchemy \ 
     25                    port:py26-reportlab \ 
     26                    port:py26-poppler 
     27 
     28python.link_binaries_suffix 
     29 
  • python/py-poppler/Portfile

    diff -Nurd ports/python/py-poppler/Portfile ports-patched/python/py-poppler/Portfile
    old new  
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 
     2# $Id$ 
     3PortSystem          1.0 
     4 
     5name                py-poppler 
     6version             0.12.1 
     7categories-append   pdf 
     8platforms           darwin 
     9maintainers         nomaintainer 
     10description         Python bindings for the Poppler PDF rendering library (glib).  
     11long_description    ${description} 
     12 
     13homepage            https://launchpad.net/poppler-python 
     14master_sites        ${homepage}/trunk/development/+download/ 
     15distname            pypoppler-${version} 
     16checksums           md5     1a89e5ed3042afc81bbd4d02e0cf640a \ 
     17                    sha1    a8a92039911a7c4bbd995a46f88a1877bf88ab5c \ 
     18                    rmd160  d6c196d6bbbaa9ef96c2ea3a38eb6a89308bab15 
     19 
     20depends_lib-append  port:poppler \ 
     21                    port:py-gtk2 
     22 
     23# Need to add python pkg-config files 
     24set python_prefix                   ${frameworks_dir}/Python.framework/Versions/2.4 
     25configure.pkg_config_path-append    ${python_prefix}/lib/pkgconfig 
     26 
     27# Want to install into the python framework, not /opt/local 
     28prefix              ${python_prefix} 
     29 
     30patchfiles          patch-poppler.override.diff 
     31 
  • python/py-poppler/files/patch-poppler.override.diff

    diff -Nurd ports/python/py-poppler/files/patch-poppler.override.diff ports-patched/python/py-poppler/files/patch-poppler.override.diff
    old new  
     1--- poppler.override    2010-07-15 17:05:32.000000000 +0100 
     2+++ poppler.override    2010-07-15 17:07:06.000000000 +0100 
     3@@ -19,8 +19,10 @@ 
     4 %% 
     5 headers 
     6 #include <Python.h> 
     7+#define NO_IMPORT_PYGOBJECT 
     8 #include "pygobject.h" 
     9 #include <glib/poppler.h> 
     10+#define NO_IMPORT_PYGTK 
     11 #include <pygtk/pygtk.h> 
     12 #include <pycairo.h> 
     13 #include <gdk/gdkregion.h> 
  • python/py25-poppler/Portfile

    diff -Nurd ports/python/py25-poppler/Portfile ports-patched/python/py25-poppler/Portfile
    old new  
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 
     2# $Id$ 
     3PortSystem          1.0 
     4 
     5name                py25-poppler 
     6version             0.12.1 
     7categories-append   pdf 
     8platforms           darwin 
     9maintainers         nomaintainer 
     10description         Python bindings for the Poppler PDF rendering library (glib).  
     11long_description    ${description} 
     12 
     13homepage            https://launchpad.net/poppler-python 
     14master_sites        ${homepage}/trunk/development/+download/ 
     15distname            pypoppler-${version} 
     16checksums           md5     1a89e5ed3042afc81bbd4d02e0cf640a \ 
     17                    sha1    a8a92039911a7c4bbd995a46f88a1877bf88ab5c \ 
     18                    rmd160  d6c196d6bbbaa9ef96c2ea3a38eb6a89308bab15 
     19 
     20depends_lib-append  port:poppler \ 
     21                    port:py25-gtk 
     22 
     23# Need to add python pkg-config files 
     24set python_prefix                   ${frameworks_dir}/Python.framework/Versions/2.5 
     25configure.pkg_config_path-append    ${python_prefix}/lib/pkgconfig 
     26 
     27# Want to install into the python framework, not /opt/local 
     28prefix              ${python_prefix} 
     29 
     30patchfiles          patch-poppler.override.diff 
     31 
  • python/py25-poppler/files/patch-poppler.override.diff

    diff -Nurd ports/python/py25-poppler/files/patch-poppler.override.diff ports-patched/python/py25-poppler/files/patch-poppler.override.diff
    old new  
     1--- poppler.override    2010-07-15 17:05:32.000000000 +0100 
     2+++ poppler.override    2010-07-15 17:07:06.000000000 +0100 
     3@@ -19,8 +19,10 @@ 
     4 %% 
     5 headers 
     6 #include <Python.h> 
     7+#define NO_IMPORT_PYGOBJECT 
     8 #include "pygobject.h" 
     9 #include <glib/poppler.h> 
     10+#define NO_IMPORT_PYGTK 
     11 #include <pygtk/pygtk.h> 
     12 #include <pycairo.h> 
     13 #include <gdk/gdkregion.h> 
  • python/py26-poppler/Portfile

    diff -Nurd ports/python/py26-poppler/Portfile ports-patched/python/py26-poppler/Portfile
    old new  
     1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 
     2# $Id$ 
     3PortSystem          1.0 
     4 
     5name                py26-poppler 
     6version             0.12.1 
     7categories-append   pdf 
     8platforms           darwin 
     9maintainers         nomaintainer 
     10description         Python bindings for the Poppler PDF rendering library (glib).  
     11long_description    ${description} 
     12 
     13homepage            https://launchpad.net/poppler-python 
     14master_sites        ${homepage}/trunk/development/+download/ 
     15distname            pypoppler-${version} 
     16checksums           md5     1a89e5ed3042afc81bbd4d02e0cf640a \ 
     17                    sha1    a8a92039911a7c4bbd995a46f88a1877bf88ab5c \ 
     18                    rmd160  d6c196d6bbbaa9ef96c2ea3a38eb6a89308bab15 
     19 
     20depends_lib-append  port:poppler \ 
     21                    port:py26-gtk 
     22 
     23# Need to add python pkg-config files 
     24set python_prefix                   ${frameworks_dir}/Python.framework/Versions/2.6 
     25configure.pkg_config_path-append    ${python_prefix}/lib/pkgconfig 
     26 
     27# Want to install into the python framework, not /opt/local 
     28prefix              ${python_prefix} 
     29 
     30patchfiles          patch-poppler.override.diff 
     31 
  • python/py26-poppler/files/patch-poppler.override.diff

    diff -Nurd ports/python/py26-poppler/files/patch-poppler.override.diff ports-patched/python/py26-poppler/files/patch-poppler.override.diff
    old new  
     1--- poppler.override    2010-07-15 17:05:32.000000000 +0100 
     2+++ poppler.override    2010-07-15 17:07:06.000000000 +0100 
     3@@ -19,8 +19,10 @@ 
     4 %% 
     5 headers 
     6 #include <Python.h> 
     7+#define NO_IMPORT_PYGOBJECT 
     8 #include "pygobject.h" 
     9 #include <glib/poppler.h> 
     10+#define NO_IMPORT_PYGTK 
     11 #include <pygtk/pygtk.h> 
     12 #include <pycairo.h> 
     13 #include <gdk/gdkregion.h>