Ticket #13866: Portfile

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