mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-26 09:46:09 +00:00
Update to 0.7.
Approved by: maintainer
This commit is contained in:
parent
c95782ae1a
commit
63e1ad8f15
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=228522
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= tmux
|
||||
DISTVERSION= 0.6
|
||||
DISTVERSION= 0.7
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= SF
|
||||
|
||||
@ -29,7 +29,7 @@ post-install:
|
||||
|
||||
.if !defined(NOPORTEXAMPLES)
|
||||
${MKDIR} ${EXAMPLESDIR}
|
||||
.for i in n-marriott.sh n-marriott.conf tmux.vim screen-keys.conf
|
||||
.for i in n-marriott.sh n-marriott.conf screen-keys.conf tmux.vim
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/${i} ${EXAMPLESDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (tmux-0.6.tar.gz) = 0749cb7df138b587dfdb59f2cca4b414
|
||||
SHA256 (tmux-0.6.tar.gz) = 92fc309d4343527f09d94d18132e6b893983e00362ade7afc3799361ce78589a
|
||||
SIZE (tmux-0.6.tar.gz) = 149636
|
||||
MD5 (tmux-0.7.tar.gz) = bcdabfb8c49c3797ddd058bdeb3f1bfc
|
||||
SHA256 (tmux-0.7.tar.gz) = c0ee542ca30a28e57de44ae95351f956ad27a76f00f1b8f35e9a0fde66aa6794
|
||||
SIZE (tmux-0.7.tar.gz) = 163951
|
||||
|
@ -1,12 +0,0 @@
|
||||
--- Makefile.orig 2009-01-18 23:30:26.000000000 +0800
|
||||
+++ Makefile 2009-01-18 23:31:22.000000000 +0800
|
||||
@@ -80,6 +80,9 @@
|
||||
# FreeBSD and DragonFly
|
||||
.if ${OS} == "FreeBSD" || ${OS} == "DragonFly"
|
||||
CFLAGS+= -DUSE_LIBUTIL_H
|
||||
+INCDIRS+= -Icompat
|
||||
+SRCS+= compat/vis.c
|
||||
+LIBS+= -lcrypt
|
||||
.endif
|
||||
|
||||
OBJS= ${SRCS:S/.c/.o/:S/.y/.o/}
|
@ -2,4 +2,4 @@ Tmux is a terminal multiplexer, it enables a number of terminals to be accessed
|
||||
and controlled from a single terminal. tmux is intended to be a simple, modern,
|
||||
BSD-licensed alternative to programs such as GNU screen.
|
||||
|
||||
WWW: http://tmux.sf.net/
|
||||
WWW: http://www.sourceforge.net/projects/tmux/
|
||||
|
@ -5,6 +5,6 @@ bin/tmux
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-marriott.conf
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-marriott.sh
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tmux.vim
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/screen-keys.conf
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tmux.vim
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
|
||||
|
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= tmux
|
||||
DISTVERSION= 0.6
|
||||
DISTVERSION= 0.7
|
||||
CATEGORIES= misc
|
||||
MASTER_SITES= SF
|
||||
|
||||
@ -29,7 +29,7 @@ post-install:
|
||||
|
||||
.if !defined(NOPORTEXAMPLES)
|
||||
${MKDIR} ${EXAMPLESDIR}
|
||||
.for i in n-marriott.sh n-marriott.conf tmux.vim screen-keys.conf
|
||||
.for i in n-marriott.sh n-marriott.conf screen-keys.conf tmux.vim
|
||||
${INSTALL_DATA} ${WRKSRC}/examples/${i} ${EXAMPLESDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (tmux-0.6.tar.gz) = 0749cb7df138b587dfdb59f2cca4b414
|
||||
SHA256 (tmux-0.6.tar.gz) = 92fc309d4343527f09d94d18132e6b893983e00362ade7afc3799361ce78589a
|
||||
SIZE (tmux-0.6.tar.gz) = 149636
|
||||
MD5 (tmux-0.7.tar.gz) = bcdabfb8c49c3797ddd058bdeb3f1bfc
|
||||
SHA256 (tmux-0.7.tar.gz) = c0ee542ca30a28e57de44ae95351f956ad27a76f00f1b8f35e9a0fde66aa6794
|
||||
SIZE (tmux-0.7.tar.gz) = 163951
|
||||
|
@ -1,12 +0,0 @@
|
||||
--- Makefile.orig 2009-01-18 23:30:26.000000000 +0800
|
||||
+++ Makefile 2009-01-18 23:31:22.000000000 +0800
|
||||
@@ -80,6 +80,9 @@
|
||||
# FreeBSD and DragonFly
|
||||
.if ${OS} == "FreeBSD" || ${OS} == "DragonFly"
|
||||
CFLAGS+= -DUSE_LIBUTIL_H
|
||||
+INCDIRS+= -Icompat
|
||||
+SRCS+= compat/vis.c
|
||||
+LIBS+= -lcrypt
|
||||
.endif
|
||||
|
||||
OBJS= ${SRCS:S/.c/.o/:S/.y/.o/}
|
@ -2,4 +2,4 @@ Tmux is a terminal multiplexer, it enables a number of terminals to be accessed
|
||||
and controlled from a single terminal. tmux is intended to be a simple, modern,
|
||||
BSD-licensed alternative to programs such as GNU screen.
|
||||
|
||||
WWW: http://tmux.sf.net/
|
||||
WWW: http://www.sourceforge.net/projects/tmux/
|
||||
|
@ -5,6 +5,6 @@ bin/tmux
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-marriott.conf
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-marriott.sh
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tmux.vim
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/screen-keys.conf
|
||||
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tmux.vim
|
||||
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
|
||||
|
Loading…
Reference in New Issue
Block a user