Commits
Perry E. Metzger authored 70be950aff7
1 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 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup github 1.0 |
5 5 | |
6 - | github.setup dinhviethoa libetpan 1.9.3 |
6 + | github.setup dinhviethoa libetpan 1.9.4 |
7 7 | revision 1 |
8 8 | categories mail devel |
9 9 | platforms darwin |
10 10 | license BSD |
11 11 | maintainers {pmetzger @pmetzger} openmaintainer |
12 12 | |
13 - | description mail purpose library |
13 + | description mail access library |
14 14 | |
15 - | long_description libEtPan is a mail purpose library. It will be used for \ |
16 - | low-level mail handling: network protocols \ |
17 - | (IMAP/NNTP/POP3/SMTP over TCP/IP and SSL/TCP/IP, already \ |
18 - | implemented), local storage (mbox/MH/maildir), \ |
19 - | message/MIME parser |
15 + | long_description libEtPan provides a portable, efficient framework \ |
16 + | for different kinds of mail access:\ |
17 + | IMAP, SMTP, POP and NNTP.\ |
18 + | It provides an API for C language. |
20 19 | |
21 - | checksums rmd160 218c7f249109e7ca69f2d89a4528ff541155b997 \ |
22 - | sha256 a85b3be56669c807ddc8234fadae8b0de8595bfdecc0ddb3e5fffa28655cabbc \ |
23 - | size 5000466 |
20 + | checksums rmd160 dabd72e915dfb49977db48d53d6ee82ac3a98d41 \ |
21 + | sha256 c6425b47713de27abe334fe3f875f403c5d7eb14daf30d22378ab4cbbd487d2d \ |
22 + | size 5000369 |
24 23 | |
25 24 | depends_build-append port:autoconf \ |
26 25 | port:automake \ |
27 26 | port:libtool |
28 27 | |
29 28 | depends_lib-append port:curl \ |
30 29 | port:cyrus-sasl2 \ |
31 30 | port:expat \ |
32 31 | port:libiconv \ |
33 32 | path:lib/libssl.dylib:openssl \ |
34 33 | port:zlib |
35 34 | |
36 35 | configure.cmd ./autogen.sh |
37 36 | configure.args --with-openssl=${prefix} \ |
38 37 | --with-sasl=${prefix} \ |
39 38 | --disable-db \ |
40 39 | --disable-debug \ |
41 40 | --disable-dependency-tracking \ |
42 41 | --disable-silent-rules |
43 - | |
44 - | post-build { |
45 - | reinplace -E {s|-arch [a-z0-9_]+||g} \ |
46 - | ${worksrcpath}/libetpan-config |
47 - | } |