Ticket #48861: homebank.3.diff

File homebank.3.diff, 1.9 KB (added by kurthindenburg (Kurt Hindenburg), 9 years ago)

Patch for Portfile and files/

  • Portfile

     
    44PortSystem          1.0
    55
    66name                homebank
    7 version             4.6.3
     7version             5.0.6
    88categories          x11
    99license             GPL-2+
    1010platforms           darwin
     
    2121homepage            http://homebank.free.fr/
    2222master_sites        ${homepage}public/
    2323
    24 checksums           rmd160  856c7a75ad431186417e729f3fc97fdb4d3f3506 \
    25                     sha256  f6e31bb789d626b507c2af9d176a0bac0cbaec770ede73048ba7a6df113a6948
     24checksums           rmd160  758e69c467b1df36c65cd0d55fedc9e848f705bc \
     25                    sha256  4a52ef7a20accd50f8cead0d0564042912573c7d60887ef5e4d462fb28b239e4
    2626
    2727depends_build       port:intltool \
    28                     port:pkgconfig
    29 depends_lib         port:gtk2 \
     28                    port:pkgconfig \
     29                    port:autoconf \
     30                    port:automake \
     31                    port:libtool
     32
     33depends_lib         port:gtk3 \
    3034                    port:libofx \
    3135                    port:librsvg \
    32                     port:p5.16-xml-parser
     36                    port:gnome-themes-standard
    3337
     38configure.cmd       ./autogen.sh
     39
    3440post-patch {
     41    xinstall -m 755 ${filespath}/autogen.sh ${worksrcpath}
    3542    file attributes ${worksrcpath}/install-sh -permissions +x
    3643}
    37 
    38 livecheck.type      regex
    39 livecheck.regex     "HomeBank (\\d+(?:\\.\\d+)*) released"
  • files/autogen.sh

     
     1#!/bin/sh
     2# Run this to generate all the initial makefiles, etc.
     3
     4echo "autogen.sh: running: intltoolize --force"
     5intltoolize --force || exit 1
     6autoreconf -vif || exit 1
     7
     8if test -z "$NOCONFIGURE"; then
     9    ./configure "$@" && echo "Now type \`make' to compile" || exit 1
     10fi