Ticket #21774: Portfile

File Portfile, 946 bytes (added by gordon.child@…, 15 years ago)

Paintbrush Portfile

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