mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
88 lines
2.9 KiB
Tcl
88 lines
2.9 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
|
|
name cclient
|
|
version 2007f
|
|
revision 5
|
|
checksums rmd160 298b09c2da9650cb7bc70094da49bab57878ae20 \
|
|
sha256 53e15a2b5c1bc80161d42e9f69792a3fa18332b7b771910131004eb520004a28 \
|
|
size 1990304
|
|
|
|
license Apache-2
|
|
platforms darwin
|
|
categories mail devel
|
|
maintainers nomaintainer
|
|
description UW IMAP c-client library
|
|
|
|
long_description \
|
|
C-client is a common API for accessing mailboxes. It is used internally by \
|
|
the popular PINE mail reader as well as the University of Washington's \
|
|
IMAP server.
|
|
|
|
homepage http://www.washington.edu/imap/
|
|
master_sites ftp://ftp.cac.washington.edu/imap/
|
|
distname imap-${version}
|
|
dist_subdir imap-uw
|
|
|
|
depends_lib path:lib/libssl.dylib:openssl \
|
|
port:zlib \
|
|
lib:libgssapi_krb5:kerberos5
|
|
|
|
patchfiles implicit.patch \
|
|
openssl-1.1.patch
|
|
|
|
post-patch {
|
|
reinplace -E /SSLLIB/s|/usr|${prefix}|g ${worksrcpath}/Makefile
|
|
reinplace -E /SSLLIB/s|/System/Library/OpenSSL|${prefix}/etc/openssl|g \
|
|
${worksrcpath}/Makefile
|
|
}
|
|
|
|
use_configure no
|
|
|
|
variant universal {}
|
|
|
|
build.target oxp
|
|
build.args CC=${configure.cc} \
|
|
EXTRACFLAGS="${configure.cflags} [get_canonical_archflags cc]" \
|
|
EXTRALDFLAGS="${configure.ldflags} [get_canonical_archflags ld]"
|
|
|
|
use_parallel_build no
|
|
|
|
destroot {
|
|
xinstall -d ${destroot}${prefix}/include/c-client
|
|
xinstall -m 644 -W ${worksrcpath}/c-client \
|
|
c-client.h dummy.h env.h env_unix.h fdstring.h flockcyg.h flocksim.h \
|
|
flstring.h fs.h ftl.h imap4r1.h linkage.c linkage.h mail.h \
|
|
misc.h netmsg.h newsrc.h nl.h nntp.h osdep.h \
|
|
pseudo.h rfc822.h smtp.h sslio.h tcp.h tcp_unix.h unix.h \
|
|
utf8.h utf8aux.h \
|
|
${destroot}${prefix}/include/c-client
|
|
xinstall -m 644 ${worksrcpath}/c-client/c-client.a \
|
|
${destroot}${prefix}/lib/libc-client4.a
|
|
system "ranlib ${destroot}${prefix}/lib/libc-client4.a"
|
|
|
|
set docdir ${prefix}/share/doc/${name}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 644 -W ${worksrcpath} LICENSE.txt NOTICE SUPPORT \
|
|
${destroot}${docdir}
|
|
copy ${worksrcpath}/docs ${destroot}${docdir}
|
|
}
|
|
|
|
if {${os.platform} eq "darwin" && ${os.major} >= 10} {
|
|
patchfiles-append fix-pam-paths-for-10.6+.patch
|
|
}
|
|
|
|
if {${os.platform} eq "darwin" && ${os.major} >= 12} {
|
|
patchfiles-append scandir.patch
|
|
}
|
|
|
|
variant ssl_plaintext description {Allow plaintext passwords over SSL} {
|
|
patchfiles-append allow-plaintext-passwords.patch
|
|
build.args-append SSLTYPE=unix
|
|
}
|
|
|
|
livecheck.type regex
|
|
livecheck.url http://ftp.ntua.gr/pub/net/mail/imap/?C=M&O=D
|
|
livecheck.regex {imap-(\d+(?:[a-z]\d*)?)\.tar}
|