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$ |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup xcode 1.0 |
---|
5 | |
---|
6 | name Paintbrush |
---|
7 | version 2.0.1 |
---|
8 | maintainers gordon.child@gmail.com |
---|
9 | |
---|
10 | categories graphics cocoa |
---|
11 | description Cocoa-based image editor |
---|
12 | long_description Paintbrush is a Cocoa-based paint program for Mac OS X, similar to Microsoft Paint and MacPaint. |
---|
13 | |
---|
14 | platforms darwin |
---|
15 | |
---|
16 | homepage http://paintbrush.sourceforge.net |
---|
17 | |
---|
18 | master_sites sourceforge:paintbrush |
---|
19 | distfiles paintbrush-2.0.1-source.tar.gz |
---|
20 | checksums md5 1e1d271eeca6a5790e1451ae191338ad \ |
---|
21 | sha1 10485b6b33b72dc81b9954d9265a3a657a177b77 \ |
---|
22 | rmd160 e4fc68079738d3f422634da1def84bf91cb12b3e |
---|
23 | |
---|
24 | xcode.project Paintbrush2.xcodeproj |
---|
25 | worksrcdir ./ |
---|
26 | |
---|
27 | pre-fetch { |
---|
28 | if {${os.major} < 9} { |
---|
29 | return -code error "This version of ${name} is only for Mac OS X 10.5 or later." |
---|
30 | } |
---|
31 | } |
---|