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: Portfile 119877 2014-05-08 21:44:04Z mf2k@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name encfs |
---|
7 | |
---|
8 | version 1.8.1 |
---|
9 | |
---|
10 | fetch.type git |
---|
11 | git.url https://github.com/vgough/encfs |
---|
12 | git.branch v${version} |
---|
13 | |
---|
14 | revision 2 |
---|
15 | worksrcdir 1.x |
---|
16 | |
---|
17 | categories fuse |
---|
18 | platforms darwin |
---|
19 | license {GPL-3+ OpenSSLException} |
---|
20 | maintainers gmail.com:Markus.Ueberall |
---|
21 | description An encrypted pass-through FUSE filesystem |
---|
22 | |
---|
23 | long_description EncFS is an encrypted pass-through filesystem which \ |
---|
24 | runs in userspace, using the FUSE kernel module. \ |
---|
25 | Similar in design to CFS and other pass-through \ |
---|
26 | filesystems, all data is encrypted and stored in the \ |
---|
27 | underlying filesystem. Unlike loopback filesystems, \ |
---|
28 | there is no predetermined or pre-allocated filesystem size. |
---|
29 | |
---|
30 | homepage http://www.arg0.net/encfs |
---|
31 | |
---|
32 | depends_build port:pkgconfig |
---|
33 | depends_lib port:rlog port:openssl port:osxfuse port:gettext port:boost |
---|
34 | |
---|
35 | patchfiles patch-configure.ac.diff |
---|
36 | |
---|
37 | platform darwin { |
---|
38 | patchfiles-append patch-encfs-encfssh.diff |
---|
39 | } |
---|
40 | |
---|
41 | post-patch { |
---|
42 | reinplace "s|@@PREFIX@@|${prefix}|g" ${worksrcpath}/configure.ac |
---|
43 | } |
---|
44 | |
---|
45 | use_autoreconf yes |
---|
46 | autoreconf.args -fvi |
---|
47 | |
---|
48 | configure.args --with-boost=${prefix} |
---|