Ticket #13791: Portfile-deluge.diff
File Portfile-deluge.diff, 1.3 KB (added by gui-dos (Guido Soranzio), 17 years ago) |
---|
-
Portfile
old new 4 4 PortGroup python25 1.0 5 5 6 6 name deluge 7 version 0.5.5 8 revision 1 7 version 0.5.8 9 8 categories-append net gnome 10 9 maintainers nomaintainer 11 10 description A GNOME BitTorrent client. … … 16 15 17 16 master_sites http://download.deluge-torrent.org/index.php?dir=tarball/${version}/&file= 18 17 19 checksums md5 76c1f8110aef4131d2bc83a7da957c6a \ 20 sha1 edfa4d6c1da3771bcae1331b8b6d2de4ef4cd5d8 \ 21 rmd160 6dd8fd764240d42fe1961c919f81f56716d10890 18 checksums md5 afcf4fcfa3b688cb8a5cc537eb22a32e \ 19 sha1 10eb38a9e7262460c39c4f145421ad64a989b298 \ 20 rmd160 a6ed2ec63fb77bf8d7785fef1022439799811ba5 21 worksrcdir ${name}-torrent-${version} 22 22 23 23 depends_lib-append \ 24 24 port:dbus-python25 \ 25 25 port:gettext \ 26 port:librsvg \ 26 27 port:py25-gtk \ 28 port:py25-hashlib \ 27 29 port:py25-xdg \ 28 30 port:py25-zlib \ 29 31 port:boost … … 34 36 PYTHON_CFLAGS="-I${prefix}/include -I${prefix}/include/boost" \ 35 37 PYTHON_LDFLAGS=-L${prefix}/lib \ 36 38 CFLAGS="-I${prefix}/include -I${prefix}/include/boost" 37 38 post-extract {39 reinplace "s|'python',|'python' + py_version,|" ${worksrcpath}/src/common.py40 }41