Ticket #35969: patch-only-whitespace.diff
File patch-only-whitespace.diff, 3.9 KB (added by cawka (Alex Afanasyev), 12 years ago) |
---|
-
dports/python/py-goocanvas/Portfile
diff --git a/dports/python/py-goocanvas/Portfile b/dports/python/py-goocanvas/Portfile index b2cde52..2a9eb2d 100644
a b 1 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 2 # $Id$ 3 3 4 PortSystem 1.0 5 PortGroup python 1.0 6 7 name py-goocanvas 8 license GPL-2+ 9 version 0.14.1 10 python.versions 26 27 11 python.default_version 27 12 revision 4 13 14 description GooCanvas python bindings 15 long_description \ 16 PyGoocanvas are the python bindings for GooCanvas which is a canvas \ 17 widget for GTK+ that uses the cairo 2D library for drawing. 18 maintainers ucla.edu:alexander.afanasyev 19 categories python gnome 20 platforms darwin 21 22 homepage http://live.gnome.org/PyGoocanvas 23 set branch [join [lrange [split ${version} .] 0 1] .] 24 master_sites gnome:sources/pygoocanvas/${branch}/ 25 use_bzip2 no 26 distname pygoocanvas-${version} 27 checksums md5 d502dea5c0d2ac71d953895df81c32e8 \ 28 sha1 ea1e10a24ef15a1d3880552fff6352d8b0621ef5 \ 29 rmd160 162628947fd6a0d630bd20f9dec570c50fab2d23 4 PortSystem 1.0 5 PortGroup python 1.0 6 7 name py-goocanvas 8 homepage http://live.gnome.org/PyGoocanvas 9 license GPL-2+ 10 version 0.14.1 11 revision 4 12 13 python.versions 26 27 14 python.default_version 27 15 16 categories python gnome 17 platforms darwin 18 maintainers ucla.edu:alexander.afanasyev 19 20 description GooCanvas python bindings 21 22 long_description PyGoocanvas are the python bindings for GooCanvas which is a canvas \ 23 widget for GTK+ that uses the cairo 2D library for drawing. 24 25 26 set branch [join [lrange [split ${version} .] 0 1] .] 27 master_sites gnome:sources/pygoocanvas/${branch}/ 28 distname pygoocanvas-${version} 29 use_bzip2 no 30 checksums md5 d502dea5c0d2ac71d953895df81c32e8 \ 31 sha1 ea1e10a24ef15a1d3880552fff6352d8b0621ef5 \ 32 rmd160 162628947fd6a0d630bd20f9dec570c50fab2d23 30 33 31 34 if {$subport != $name} { 32 depends_build \ 33 port:docbook-xml-4.1.2 \ 34 port:docbook-xsl \ 35 port:pkgconfig 36 depends_lib-append \ 37 port:goocanvas \ 38 port:gtk2 \ 39 port:py${python.version}-gtk \ 40 port:py${python.version}-cairo \ 41 port:py${python.version}-gobject 35 depends_build port:docbook-xml-4.1.2 \ 36 port:docbook-xsl \ 37 port:pkgconfig 42 38 43 patchfiles patch-configure.diff 39 depends_lib-append port:goocanvas \ 40 port:gtk2 \ 41 port:py${python.version}-gtk \ 42 port:py${python.version}-cairo \ 43 port:py${python.version}-gobject 44 44 45 patchfiles patch-configure.diff 45 46 46 use_configure yes47 use_configure yes 47 48 48 configure.compiler llvm-gcc-4.249 configure.python ${python.bin}50 configure.args "--prefix=${python.prefix}"49 configure.compiler llvm-gcc-4.2 50 configure.python ${python.bin} 51 configure.args "--prefix=${python.prefix}" 51 52 configure.pkg_config_path ${python.prefix}/lib/pkgconfig 52 53 53 build.cmd make54 build.cmd make 54 55 build.target 55 destroot.cmd make56 destroot.target install57 destroot.destdir "DESTDIR=${destroot}"56 destroot.cmd make 57 destroot.target install 58 destroot.destdir "DESTDIR=${destroot}" 58 59 }