Ticket #20079: Portfile-kile-devel.diff
File Portfile-kile-devel.diff, 1.1 KB (added by nerdling (Jeremy Lavergne), 15 years ago) |
---|
-
Portfile
2 2 # $Id$ 3 3 4 4 PortSystem 1.0 5 PortGroup cmake 1.0 5 6 6 7 name kile-devel 7 8 version 2.1b1 … … 22 23 23 24 use_bzip2 yes 24 25 25 depends_build port:cmake \ 26 port:automoc 26 depends_build port:automoc 27 27 28 28 depends_lib port:kdelibs4 \ 29 29 port:kdegraphics4 30 30 31 configure.pre_args "-DCMAKE_INSTALL_PREFIX=${prefix} -DQT_QMAKE_EXECUTABLE=${prefix}/bin/qmake-mac" 32 configure.args "-DCMAKE_INCLUDE_PATH=${prefix}/include -DCMAKE_LIBRARY_PATH=${prefix}/lib" 33 configure.cmd "${prefix}/bin/cmake" 31 configure.pre_args-append "-DQT_QMAKE_EXECUTABLE=${prefix}/bin/qmake-mac" 34 32 35 33 post-destroot { 36 34 xinstall -d ${destroot}${applications_dir} … … 38 36 file attributes ${destroot}${prefix}/share/apps/kile -permissions ugo+w 39 37 } 40 38 41 variant debug description {Add debug support} {42 configure.args-append "-DCMAKE_BUILD_TYPE=\"Debug\" "43 }44