Ticket #48861: homebank.3.diff
File homebank.3.diff, 1.9 KB (added by kurthindenburg (Kurt Hindenburg), 9 years ago) |
---|
-
Portfile
4 4 PortSystem 1.0 5 5 6 6 name homebank 7 version 4.6.37 version 5.0.6 8 8 categories x11 9 9 license GPL-2+ 10 10 platforms darwin … … 21 21 homepage http://homebank.free.fr/ 22 22 master_sites ${homepage}public/ 23 23 24 checksums rmd160 856c7a75ad431186417e729f3fc97fdb4d3f3506\25 sha256 f6e31bb789d626b507c2af9d176a0bac0cbaec770ede73048ba7a6df113a694824 checksums rmd160 758e69c467b1df36c65cd0d55fedc9e848f705bc \ 25 sha256 4a52ef7a20accd50f8cead0d0564042912573c7d60887ef5e4d462fb28b239e4 26 26 27 27 depends_build port:intltool \ 28 port:pkgconfig 29 depends_lib port:gtk2 \ 28 port:pkgconfig \ 29 port:autoconf \ 30 port:automake \ 31 port:libtool 32 33 depends_lib port:gtk3 \ 30 34 port:libofx \ 31 35 port:librsvg \ 32 port: p5.16-xml-parser36 port:gnome-themes-standard 33 37 38 configure.cmd ./autogen.sh 39 34 40 post-patch { 41 xinstall -m 755 ${filespath}/autogen.sh ${worksrcpath} 35 42 file attributes ${worksrcpath}/install-sh -permissions +x 36 43 } 37 38 livecheck.type regex39 livecheck.regex "HomeBank (\\d+(?:\\.\\d+)*) released" -
files/autogen.sh
1 #!/bin/sh 2 # Run this to generate all the initial makefiles, etc. 3 4 echo "autogen.sh: running: intltoolize --force" 5 intltoolize --force || exit 1 6 autoreconf -vif || exit 1 7 8 if test -z "$NOCONFIGURE"; then 9 ./configure "$@" && echo "Now type \`make' to compile" || exit 1 10 fi