Ticket #5300: Portfile.5

File Portfile.5, 1.0 KB (added by arsptr@…, 18 years ago)

Portfile

Line 
1PortSystem 1.0
2PortGroup python24 1.0
3
4name                       py-xattr
5version                    0.2
6revision                   1
7categories                 python
8platforms                  darwin linux
9maintainers                arsptr@optusnet.com.au
10description                xattr is a Python wrapper for Darwin's extended filesystem attributes
11long_description   Extended attributes extend the basic attributes of files and directories \
12                   in the file system. They are stored as name:data pairs associated with file \
13                   system objects (files, directories, symlinks, etc). \
14                   \
15                   Extended attributes are currently only available on Darwin 8.0 and later. \
16                   This corresponds to Mac OS X 10.4 (Tiger).
17
18homepage                   http://undefined.org/python/#xattr
19fetch.type         svn
20svn.url            http://svn.red-bean.com/bob/xattr/releases/xattr-0.2/
21
22worksrcdir         xattr-${version}
23
24platform darwin 7 {
25  fetch {
26    ui_msg "This port needs filesystem Extended Attributes (EA) that are only available on Darwin 8 and later!"
27    system "/bin/false"
28  }
29}