| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | |
|---|
| 5 | name Cenon |
|---|
| 6 | version 3.83 |
|---|
| 7 | categories aqua graphics |
|---|
| 8 | platforms darwin |
|---|
| 9 | maintainers bfulgham@mac.com |
|---|
| 10 | description Modular Graphics Application |
|---|
| 11 | long_description Cenon is a graphical tool kernel. Built upon a modular \ |
|---|
| 12 | graphical core, Cenon offers a wide variety of \ |
|---|
| 13 | possible applications. The default install \ |
|---|
| 14 | includes support for desktop publishing, vector \ |
|---|
| 15 | graphics conversion (PostScript, PDF, DXF, HPGL \ |
|---|
| 16 | Gerber, DIN, and more), graphics (TIFF, GIF, JPEG, \ |
|---|
| 17 | etc.), Typopgraphy (font import, text rotation), and \ |
|---|
| 18 | some rudimentary drafting features. |
|---|
| 19 | |
|---|
| 20 | homepage http://www.cenon.info/ |
|---|
| 21 | master_sites http://www.vhf-group.com/vhfInterservice/download/source/Apple |
|---|
| 22 | distfiles Cenon-${version}.tar.bz2 \ |
|---|
| 23 | CenonLibrary-${version}-1.tar.bz2 |
|---|
| 24 | checksums Cenon-${version}.tar.bz2 md5 5994f15e7e02a3318d5058949f5c851e \ |
|---|
| 25 | CenonLibrary-${version}-1.tar.bz2 md5 3455746ac9dabbc61ae29d7dcad7d884 |
|---|
| 26 | use_bzip2 yes |
|---|
| 27 | |
|---|
| 28 | patchfiles patch-Cenon.xcodeproj-project.pbxproj patch-Cenon.xcodeproj-georg.pbxuser |
|---|
| 29 | |
|---|
| 30 | worksrcdir Cenon |
|---|
| 31 | |
|---|
| 32 | use_configure no |
|---|
| 33 | |
|---|
| 34 | set xcodebuilddir build |
|---|
| 35 | if {$xcodeversion == "2.1"} { |
|---|
| 36 | set xcodebuilddir build/Default |
|---|
| 37 | } |
|---|
| 38 | |
|---|
| 39 | build.type pbx |
|---|
| 40 | build.dir ${workpath}/${name} |
|---|
| 41 | build.target -configuration Default ARCHS="ppc i386" |
|---|
| 42 | |
|---|
| 43 | destroot { |
|---|
| 44 | xinstall -m 755 -d ${destroot}/Applications/MacPorts/ |
|---|
| 45 | file copy ${worksrcpath}/${xcodebuilddir}/${name}.app \ |
|---|
| 46 | ${destroot}/Applications/MacPorts/ |
|---|
| 47 | xinstall -m 755 -d ${destroot}/Library/ |
|---|
| 48 | system "tar -C ${destroot}/Library -xjvf ${distpath}/CenonLibrary-${version}-1.tar.bz2" |
|---|
| 49 | } |
|---|