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 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name fuse4x |
---|
7 | version 0.8.6 |
---|
8 | revision 1 |
---|
9 | categories fuse devel |
---|
10 | platforms macosx |
---|
11 | maintainers dports |
---|
12 | description A FUSE-Compliant File System Implementation Mechanism for \ |
---|
13 | Mac OS X |
---|
14 | |
---|
15 | long_description Fuse4X implements a mechanism that makes it possible to \ |
---|
16 | implement a fully functional file system in a user-space \ |
---|
17 | program on Mac OS X. It aims to be API-compliant with \ |
---|
18 | the FUSE (File-system in USErspace) mechanism that \ |
---|
19 | originated on Linux. Therefore, many existing FUSE file \ |
---|
20 | systems become readily usable on Mac OS X. The core of \ |
---|
21 | Fuse4X is in a dynamically loadable kernel extension. |
---|
22 | |
---|
23 | homepage http://fuse4x.org/ |
---|
24 | license LGPL |
---|
25 | fetch.type git |
---|
26 | git.url git://github.com/fuse4x/fuse.git |
---|
27 | git.branch fuse4x_0_8_6 |
---|
28 | |
---|
29 | use_autoreconf yes |
---|
30 | autoreconf.args -fvi |
---|
31 | use_configure yes |
---|
32 | configure.args --disable-dependency-tracking # universal build is enabled by default |
---|
33 | build.cmd make |
---|
34 | |
---|
35 | # TODO: this port should depend on kext of exactly the same version as fuse4x has. |
---|
36 | depends_build port:pkgconfig port:autoconf port:automake port:libtool |
---|
37 | depends_lib port:fuse4x-kext port:libiconv |
---|
38 | |
---|
39 | |
---|