Ticket #27349: Portfile-kipi-plugins.diff
File Portfile-kipi-plugins.diff, 2.0 KB (added by jgosmann (Jan Gosmann), 14 years ago) |
---|
-
Portfile
old new 2 2 # $Id$ 3 3 4 4 PortSystem 1.0 5 PortGroup kde4 1. 05 PortGroup kde4 1.1 6 6 7 7 name kipi-plugins 8 version 1. 1.08 version 1.6.0 9 9 categories kde kde4 10 10 maintainers hyper-world.de:jan 11 11 … … 19 19 platforms darwin 20 20 master_sites sourceforge:kipi 21 21 distname kipi-plugins-${version} 22 checksums md5 f1a92d0fe29bd68de08551a5e607015e\23 sha1 e65c9b6df70651c5cc10a1c7ec16e167b33a991f22 checksums md5 5c9b68818afab24a7fe31e4c9580b81a \ 23 sha1 b5d910ed6e802f41d6580ca42267f810c8ae6760 24 24 25 25 use_bzip2 yes 26 26 27 27 depends_lib port:kdelibs4 \ 28 28 port:kdebase4-runtime \ 29 29 port:kdegraphics4 \ 30 port:phonon \ 30 31 port:ImageMagick \ 31 32 port:mesa \ 32 33 port:libgpod \ 33 port:gdk-pixbuf 34 #port:opencv # This package does not build at the moment on Snow Leopard. If it is not installed, the removeRedEyes plugin will not get build automatically. 34 port:gdk-pixbuf \ 35 port:opencv 36 35 37 configure.args-append ../${distname} 36 configure.pkg_config_path-append ${qt_dir}/lib/pkgconfig37 38 38 post-extract { 39 # change #include <Phonon...> to <phonon...> in all files that 40 # contain that header. 41 foreach item [exec grep -lr "Phonon" ${workpath}/${distname}] { 42 reinplace "/#include/s@Phonon@phonon@" ${item} 43 } 39 variant no_ipod_export description {Install without iPod export plugin. This variant removes also the gtk dependency. Some had problems installing this port. Use this variant if this applies also for you, but you want to install kipi-plugins anyway.} { 40 depends_lib-delete \ 41 port:gdk-pixbuf \ 42 port:libgpod 43 patchfiles-append disable-gtk-dependencies-CMakeLists.txt.diff 44 44 } 45