1 | # $Id: Portfile 20390 2006-11-03 00:46:05Z blair@macports.org $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | PortGroup python25 1.0 |
---|
5 | |
---|
6 | name py-xattr |
---|
7 | version 0.4 |
---|
8 | categories python |
---|
9 | platforms darwin linux |
---|
10 | maintainers arsptr@optusnet.com.au |
---|
11 | description xattr is a Python wrapper for Darwin's extended filesystem attributes |
---|
12 | long_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 | |
---|
19 | homepage http://undefined.org/python/#xattr |
---|
20 | fetch.type svn |
---|
21 | svn.url http://svn.red-bean.com/bob/xattr/releases/xattr-0.4/ |
---|
22 | |
---|
23 | depends_build port:subversion |
---|
24 | |
---|
25 | worksrcdir xattr-${version} |
---|
26 | |
---|
27 | platform 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 | } |
---|