Ticket #46359: kde4-workspace-diff.patch
File kde4-workspace-diff.patch, 3.3 KB (added by RJVB (René Bertin), 10 years ago) |
---|
-
/opt/local/site-ports/kde/kde4-workspace-git/
old new 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 # $Id: Portfile 12 7391 2014-10-26 23:24:49Z mk@macports.org $2 # $Id: Portfile 120204 2014-05-19 15:26:03Z nicos@macports.org $ 3 3 4 4 PortSystem 1.0 5 5 PortGroup kde4 1.1 6 6 7 fetch.type git 8 git.url git://anongit.kde.org/kde-workspace 9 #git.branch e7a4d0bc 10 git.branch fc11b509 11 7 12 name kde4-workspace 8 version 4.1 3.39 set plasmaversion 4.11.1113 version 4.11.14 14 revision 1 10 15 categories kde kde4 11 maintainers gmail.com:rjvbertin16 maintainers rjvbertin@gmail.com 12 17 license GPL-2+ LGPL-2.1+ 13 18 description KDE Workspace 14 19 long_description Brings certain aspects of Linux/X11 KDE workspaces ("Plasma") to OS X, \ 15 20 notably the System Settings application and the Oxygen style.\ 16 KDE ${version} has Plasma ${plasmaversion}17 21 platforms darwin 18 22 homepage http://www.kde.org/workspaces/ 19 23 master_sites kde:stable/${version}/src/ 20 24 use_xz yes 21 distname kde-workspace-${plasmaversion}22 25 23 checksums rmd160 e0cdcde2c455e376a8bf785bb2c3ef114fa9a5f1 \24 sha256 f188b003c56d2a40f71d4eea8c91b7ae0febcf25c252c383913281fce73c4d7325 26 26 #Fully removing X11 only function to prevent automoc to include it (RR 120287) 27 patchfiles patch-CmakeLists-for-OSX.patch \28 libs-CmakeLists-deactivate-taskmanager.patch \29 patch- KControl-CmakeLists.patch \30 krdb-noX11onOSX.patch27 patchfiles patch-CMakeLists-for-OSX.patch \ 28 patch-libs-CMakeLists.patch \ 29 patch-kcontrol.patch \ 30 patch-plasma.patch \ 31 systemsettings-correct-menuplacement.patch 31 32 32 33 depends_build-append port:boost \ 33 34 port:freetype \ … … 38 39 port:kactivities \ 39 40 port:nepomuk-core \ 40 41 port:libqalculate \ 42 port:phonon \ 41 43 port:qjson \ 42 44 port:qimageblitz 43 45 44 46 configure.args-append -DBUILD_webkit:BOOL=ON 45 47 46 variant nostrip description {Prevent stripping of binaries} { 48 variant nostrip description {Prevent stripping of binaries} {} 49 50 if { [variant_isset nostrip] } { 47 51 configure.args-delete -DCMAKE_BUILD_TYPE=Release 48 52 configure.args-append -DCMAKE_BUILD_TYPE:STRING=RelWithDebInfo -DCMAKE_STRIP:FILEPATH=/bin/echo 49 53 } 50 54 51 livecheck.url http://kde.mirrors.hoobly.com/stable/ 52 livecheck.regex (\\d+(\\.\\d+)+) 55 variant without_oxygen description {Don't build the Oxygen theme} {} 56 57 if { [variant_isset without_oxygen] } { 58 patchfiles-delete no-oxygen-theme.patch 59 } 60 61 post-destroot { 62 ln -s /Applications/MacPorts/KDE4/plasma-windowed.app/Contents/MacOS/plasma-windowed ${destroot}/opt/local/bin/plasma-windowed 63 } 64 65 #livecheck.url http://kde.mirrors.hoobly.com/stable/ 66 #livecheck.regex (\\d+(\\.\\d+)+)