Ticket #48015: 0001-tmux-devel-Use-autogen.sh.patch

File 0001-tmux-devel-Use-autogen.sh.patch, 1.9 KB (added by larryv (Lawrence Velázquez), 9 years ago)

Use autogen.sh

  • dports/sysutils/tmux/Portfile

    From 612469e0f979bb89d4e71fc333c3bc38a68a02c6 Mon Sep 17 00:00:00 2001
    From: =?UTF-8?q?Lawrence=20Vel=C3=A1zquez?= <larryv@macports.org>
    Date: Wed, 10 Jun 2015 23:15:26 -0400
    Subject: [PATCH 1/2] tmux-devel: Use autogen.sh
    
    ---
     dports/sysutils/tmux/Portfile                    |  9 ++++++++-
     dports/sysutils/tmux/files/verbose-autogen.patch | 14 ++++++++++++++
     2 files changed, 22 insertions(+), 1 deletion(-)
     create mode 100644 dports/sysutils/tmux/files/verbose-autogen.patch
    
    diff --git a/dports/sysutils/tmux/Portfile b/dports/sysutils/tmux/Portfile
    index 38016a6..6285638 100644
    a b subport tmux { 
    3333subport tmux-devel {
    3434    checksums               rmd160  5db9a8201e9e643d54a3fc911e2c2f43df447e29 \
    3535                            sha256  3f780b7621683766574e1bbc16967d317aa37f4b5f0ed13305c52e00328f0979
     36
     37    patchfiles              verbose-autogen.patch
     38
    3639    use_autoreconf          yes
    37     autoreconf.args-append  --force
     40    autoreconf.cmd          ./autogen.sh
     41    autoreconf.args
     42    depends_build           port:autoconf \
     43                            port:automake \
     44                            port:libtool
    3845}
    3946
    4047platform darwin 8 {
  • new file dports/sysutils/tmux/files/verbose-autogen.patch

    diff --git a/dports/sysutils/tmux/files/verbose-autogen.patch b/dports/sysutils/tmux/files/verbose-autogen.patch
    new file mode 100644
    index 0000000..a77ff1b
    - +  
     1diff --git autogen.sh autogen.sh
     2index cbf6df1..1cb20d1 100755
     3--- autogen.sh
     4+++ autogen.sh
     5@@ -12,6 +12,6 @@ die()
     6 }
     7 
     8 mkdir -p etc
     9-aclocal || die "aclocal failed"
     10-automake --add-missing --force-missing --copy --foreign || die "automake failed"
     11-autoreconf || die "autoreconf failed"
     12+aclocal --verbose || die "aclocal failed"
     13+automake --add-missing --force-missing --copy --foreign --verbose || die "automake failed"
     14+autoreconf --verbose || die "autoreconf failed"