Ticket #37549: libesmtp-reformatting.diff

File libesmtp-reformatting.diff, 4.1 KB (added by ryandesign (Ryan Carsten Schmidt), 11 years ago)
  • Portfile

     
     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
    12# $Id$
    23
    3 PortSystem 1.0
    4 name            libesmtp
    5 version         1.0.6
    6 categories      mail
    7 license         LGPL-2.1
    8 maintainers     noses.com:noses
    9 description     ESMTP library
    10 homepage        http://www.stafford.uklinux.net/libesmtp/
    11 platforms       darwin
     4PortSystem          1.0
    125
    13 long_description libESMTP is a library to manage posting (or submission of) \
    14                  electronic mail using SMTP to a preconfigured Mail Transport \
    15                  Agent (MTA) such as Exim. It may be used as part of a Mail \
    16                  User Agent (MUA) or another program that must be able to \
    17                  post electronic mail but where mail functionality is not \
    18                  that program's primary purpose. libESMTP is not intended \
    19                  to be used as part of a program that implements a Mail \
    20                  Transport Agent. It is hoped that the availability of a \
    21                  lightweight library implementing an SMTP client will both \
    22                  ease the task of coding for software authors and improve the \
    23                  quality of the resulting code.
     6name                libesmtp
     7version             1.0.6
     8categories          mail
     9platforms           darwin
     10maintainers         noses.com:noses
     11license             LGPL-2.1
    2412
    25 master_sites    http://www.stafford.uklinux.net/libesmtp
    26 use_bzip2       yes
     13description         ESMTP library
    2714
     15long_description    libESMTP is a library to manage posting (or submission of) \
     16                    electronic mail using SMTP to a preconfigured Mail Transport \
     17                    Agent (MTA) such as Exim. It may be used as part of a Mail \
     18                    User Agent (MUA) or another program that must be able to \
     19                    post electronic mail but where mail functionality is not \
     20                    that program’s primary purpose. libESMTP is not intended \
     21                    to be used as part of a program that implements a Mail \
     22                    Transport Agent. It is hoped that the availability of a \
     23                    lightweight library implementing an SMTP client will both \
     24                    ease the task of coding for software authors and improve the \
     25                    quality of the resulting code.
     26
     27homepage            http://www.stafford.uklinux.net/libesmtp/
     28master_sites        ${homepage}
     29use_bzip2           yes
     30
    2831checksums           rmd160  7489ef298b56085f8788a3af4d17aed4ef0f1077 \
    2932                    sha256  d0a61a5c52d99fa7ce7d00ed0a07e341dbda67101dbed1ab0cdae3f37db4eb0b
    3033
    31 depends_lib     port:openssl
     34depends_lib         port:openssl
    3235
    3336post-extract {
    3437    # aclocal: error: couldn't open directory 'm4': No such file or directory
    3538    file mkdir ${worksrcpath}/m4
    3639}
    3740
    38 patchfiles      patch-auth-client.c patch-errors.c patch-headers.c patch-htable.c \
    39                 patch-protocol.c patch-rfc2822date.c patch-smtp-auth.c \
    40                 patch-smtp-tls.c patch-configure.ac.diff
     41patchfiles          patch-auth-client.c \
     42                    patch-errors.c \
     43                    patch-headers.c \
     44                    patch-htable.c \
     45                    patch-protocol.c \
     46                    patch-rfc2822date.c \
     47                    patch-smtp-auth.c \
     48                    patch-smtp-tls.c \
     49                    patch-configure.ac.diff
    4150
    42 use_autoreconf yes
     51use_autoreconf      yes
  • files/patch-configure.ac.diff

     
    11--- configure.ac.orig   2010-08-09 15:24:50.000000000 -0500
    2 +++ configure.ac        2012-05-13 21:38:53.000000000 -0500
     2+++ configure.ac        2013-01-06 10:39:42.000000000 -0600
     3@@ -25,7 +25,7 @@
     4 dnl #########################################################################
     5 
     6 AC_INIT(smtp-api.c)
     7-AM_CONFIG_HEADER(config.h)
     8+AC_CONFIG_HEADERS([config.h])
     9 AM_INIT_AUTOMAKE([libesmtp],[1.0.6])
     10 AC_CANONICAL_HOST
     11 AC_CONFIG_MACRO_DIR([m4])
    312@@ -539,7 +539,7 @@
    413 dnl #########################################################################
    514