View | Details | Raw Unified | Return to bug 222815 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-6 / +12 lines)
Lines 2-9 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	tmux
4
PORTNAME=	tmux
5
PORTVERSION=	2.5
5
PORTVERSION=	2.6
6
PORTREVISION=	1
7
CATEGORIES=	sysutils
6
CATEGORIES=	sysutils
8
MASTER_SITES=	https://github.com/tmux/tmux/releases/download/${PORTVERSION}/
7
MASTER_SITES=	https://github.com/tmux/tmux/releases/download/${PORTVERSION}/
9
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}
8
DISTFILES=	${DISTNAME}${EXTRACT_SUFX}
Lines 11-20 Link Here
11
MAINTAINER=	mat@FreeBSD.org
10
MAINTAINER=	mat@FreeBSD.org
12
COMMENT=	Terminal Multiplexer
11
COMMENT=	Terminal Multiplexer
13
12
14
LICENSE=	ISCL
13
LICENSE=	BSD2CLAUSE BSD3CLAUSE BSD4CLAUSE IBM ISCL PD Tatu.Ylonen
15
LICENSE_FILE=	${WRKSRC}/COPYING
14
LICENSE_COMB=	multi
15
LICENSE_NAME_IBM=	IBM license
16
LICENSE_NAME_Tatu.Ylonen=	License of Tatu Ylonen
17
LICENSE_FILE_IBM=	${FILESDIR}/LICENSE.IBM
18
LICENSE_FILE_ISCL=	${WRKSRC}/COPYING
19
LICENSE_FILE_Tatu.Ylonen=	${FILESDIR}/LICENSE.Tatu.Ylonen
20
LICENSE_PERMS_IBM=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
21
LICENSE_PERMS_Tatu.Ylonen=	dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
16
22
17
USES=		pkgconfig ncurses
23
USES=		ncurses pkgconfig
18
24
19
USE_GITHUB=	nodefault
25
USE_GITHUB=	nodefault
20
GH_TUPLE=	imomaliev:tmux-bash-completion:ef56d3e:bash
26
GH_TUPLE=	imomaliev:tmux-bash-completion:ef56d3e:bash
Lines 26-32 Link Here
26
		man/man1/tmux.1.gz \
32
		man/man1/tmux.1.gz \
27
		etc/bash_completion.d/tmux
33
		etc/bash_completion.d/tmux
28
34
29
PORTDOCS=	CHANGES FAQ README TODO
35
PORTDOCS=	CHANGES README TODO
30
PORTEXAMPLES=	*
36
PORTEXAMPLES=	*
31
37
32
OPTIONS_DEFINE=	DOCS EXAMPLES LIBEVENT_STATIC BACKSPACE
38
OPTIONS_DEFINE=	DOCS EXAMPLES LIBEVENT_STATIC BACKSPACE
(-)distinfo (-3 / +3 lines)
Lines 1-5 Link Here
1
TIMESTAMP = 1497441574
1
TIMESTAMP = 1507276029
2
SHA256 (tmux-2.5.tar.gz) = ae135ec37c1bf6b7750a84e3a35e93d91033a806943e034521c8af51b12d95df
2
SHA256 (tmux-2.6.tar.gz) = b17cd170a94d7b58c0698752e1f4f263ab6dc47425230df7e53a6435cc7cd7e8
3
SIZE (tmux-2.5.tar.gz) = 475717
3
SIZE (tmux-2.6.tar.gz) = 481000
4
SHA256 (imomaliev-tmux-bash-completion-ef56d3e_GH0.tar.gz) = 2f8f3fe586bbdeec9b251ce3ef74f5edef19ba371968a8011acef860ddac59e1
4
SHA256 (imomaliev-tmux-bash-completion-ef56d3e_GH0.tar.gz) = 2f8f3fe586bbdeec9b251ce3ef74f5edef19ba371968a8011acef860ddac59e1
5
SIZE (imomaliev-tmux-bash-completion-ef56d3e_GH0.tar.gz) = 1526
5
SIZE (imomaliev-tmux-bash-completion-ef56d3e_GH0.tar.gz) = 1526
(-)files/LICENSE.IBM (+24 lines)
Line 0 Link Here
1
(Following sentences are from compat/base64.c of tmux-2.6.tar.gz.)
2
3
Portions Copyright (c) 1995 by International Business Machines, Inc.
4
5
International Business Machines, Inc. (hereinafter called IBM) grants
6
permission under its copyrights to use, copy, modify, and distribute this
7
Software with or without fee, provided that the above copyright notice and
8
all paragraphs of this notice appear in all copies, and that the name of IBM
9
not be used in connection with the marketing of any product incorporating
10
the Software or modifications thereof, without specific, written prior
11
permission.
12
13
To the extent it has a right to do so, IBM grants an immunity from suit
14
under its patents, if any, for the use, sale or manufacture of products to
15
the extent that such products are used for performing Domain Name System
16
dynamic updates in TCP/IP networks by means of the Software.  No immunity is
17
granted for any product per se or for any other function of any product.
18
19
THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES,
20
INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21
PARTICULAR PURPOSE.  IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,
22
DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING
23
OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN
24
IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
(-)files/LICENSE.Tatu.Ylonen (+13 lines)
Line 0 Link Here
1
(Following sentences are from xmalloc.c of tmux-2.6.tar.gz.)
2
3
Author: Tatu Ylonen <ylo@cs.hut.fi>
4
Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5
                   All rights reserved
6
Versions of malloc and friends that check their results, and never return
7
failure (they call fatalx if they encounter an error).
8
9
* As far as I am concerned, the code I have written for this software
10
can be used freely for any purpose.  Any derived versions of this
11
software must be clearly marked as such, and if the derived work is
12
incompatible with the protocol description in the RFC file, it must be
13
called by a name other than "ssh" or "Secure Shell".

Return to bug 222815