Property changes on: files/ipe.in
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:eol-style
+ native
|
|
|
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> |
| 3 | <plist version="1.0"> |
| 4 | <dict> |
| 5 | <key>CFBundleDevelopmentRegion</key> |
| 6 | <string>English</string> |
| 7 | <key>CFBundleExecutable</key> |
| 8 | <string>Ipe</string> |
| 9 | <key>CFBundleIconFile</key> |
| 10 | <string>ipe.icns</string> |
| 11 | <key>CFBundleIdentifier</key> |
| 12 | <string>net.sourceforge.ipe7</string> |
| 13 | <key>CFBundleInfoDictionaryVersion</key> |
| 14 | <string>6.0</string> |
| 15 | <key>CFBundleName</key> |
| 16 | <string>Ipe</string> |
| 17 | <key>CFBundlePackageType</key> |
| 18 | <string>APPL</string> |
| 19 | <key>CFBundleShortVersionString</key> |
| 20 | <string>@VERSION@</string> |
| 21 | <key>CFBundleSignature</key> |
| 22 | <string>????</string> |
| 23 | <key>CFBundleVersion</key> |
| 24 | <string>@VERSION@</string> |
| 25 | </dict> |
| 26 | </plist> |
Property changes on: files/Info.plist.in
___________________________________________________________________
Added: svn:eol-style
+ native
|
|
|
5 | 5 | |
6 | 6 | name ipe |
7 | 7 | version 7.0.14 |
| 8 | revision 1 |
8 | 9 | categories graphics |
9 | 10 | maintainers jacobs-university.de:m.thon |
10 | 11 | description The Ipe extensible drawing editor |
… |
… |
|
42 | 43 | |
43 | 44 | destroot.args-append IPEPREFIX=${prefix} |
44 | 45 | use_parallel_build no |
| 46 | |
| 47 | platform macosx { |
| 48 | depends_build-append port:makeicns |
| 49 | post-destroot { |
| 50 | set app Ipe |
| 51 | xinstall -d ${destroot}${applications_dir}/${app}.app/Contents/MacOS \ |
| 52 | ${destroot}${applications_dir}/${app}.app/Contents/Resources |
| 53 | xinstall -m 644 ${filespath}/Info.plist.in ${destroot}${applications_dir}/${app}.app/Contents/Info.plist |
| 54 | reinplace "s|@VERSION@|${version}|g" ${destroot}${applications_dir}/${app}.app/Contents/Info.plist |
| 55 | xinstall -m 755 ${filespath}/${name}.in ${destroot}${applications_dir}/${app}.app/Contents/MacOS/${app} |
| 56 | reinplace "s|@PREFIX@|${prefix}|g" ${destroot}${applications_dir}/${app}.app/Contents/MacOS/${app} |
| 57 | system "cd ${worksrcpath} && ${prefix}/bin/makeicns -in ${worksrcpath}/ipe/icons/ipe.png -out ${destroot}${applications_dir}/${app}.app/Contents/Resources/${name}.icns" |
| 58 | } |
| 59 | } |