View | Details | Raw Unified | Return to bug 140323
Collapse All | Expand All

(-)Makefile (-11 / +17 lines)
Lines 6-13 Link Here
6
#
6
#
7
7
8
PORTNAME=	tmux
8
PORTNAME=	tmux
9
PORTVERSION=	1.0
9
PORTVERSION=	1.1
10
PORTREVISION=	1
11
CATEGORIES=	sysutils
10
CATEGORIES=	sysutils
12
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
13
12
Lines 18-40 Link Here
18
17
19
MAN1=		tmux.1
18
MAN1=		tmux.1
20
19
20
PLIST_FILES=	bin/tmux
21
22
PORTDOCS=	CHANGES FAQ NOTES
23
PORTEXAMPLES=	*
24
25
post-patch:
26
	@${REINPLACE_CMD} -e '/^#define HAVE_TREE_H/d' \
27
		${WRKSRC}/configure
28
21
do-install:
29
do-install:
22
	${INSTALL_PROGRAM} ${WRKSRC}/tmux ${PREFIX}/bin
30
	@${INSTALL_PROGRAM} ${WRKSRC}/tmux ${PREFIX}/bin
23
	${INSTALL_MAN} ${WRKSRC}/tmux.1 ${MANPREFIX}/man/man1
31
	@${INSTALL_MAN} ${WRKSRC}/tmux.1 ${MANPREFIX}/man/man1
24
32
25
post-install:
33
post-install:
26
.if !defined(NOPORTDOCS)
34
.if !defined(NOPORTDOCS)
27
	${MKDIR} ${DOCSDIR}
35
	@${MKDIR} ${DOCSDIR}
28
.for i in CHANGES FAQ NOTES
36
.for i in ${PORTDOCS}
29
	${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
37
	@${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
30
.endfor
38
.endfor
31
.endif
39
.endif
32
40
33
.if !defined(NOPORTEXAMPLES)
41
.if !defined(NOPORTEXAMPLES)
34
	${MKDIR} ${EXAMPLESDIR}
42
	@${MKDIR} ${EXAMPLESDIR}
35
.for i in h-boetes.conf n-marriott.sh n-marriott.conf screen-keys.conf tmux.vim
43
	@${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR}
36
	${INSTALL_DATA} ${WRKSRC}/examples/${i} ${EXAMPLESDIR}
37
.endfor
38
.endif
44
.endif
39
45
40
.include <bsd.port.mk>
46
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (tmux-1.0.tar.gz) = 716b12d9ea052f57d917bf2869d419df
1
MD5 (tmux-1.1.tar.gz) = faf2fc52ac3ae63d899f6fece2c112cd
2
SHA256 (tmux-1.0.tar.gz) = f260fef8293b3eec795b21d3b561049b758c482dc6a04dba09fdce10ef8d3a6b
2
SHA256 (tmux-1.1.tar.gz) = b3626ecb74185c5764be658fd359c3fe29ffbe5d1936de81d6628b686558436a
3
SIZE (tmux-1.0.tar.gz) = 215329
3
SIZE (tmux-1.1.tar.gz) = 230955
(-)pkg-plist (-11 lines)
Removed Link Here
1
bin/tmux
2
%%PORTDOCS%%%%DOCSDIR%%/CHANGES
3
%%PORTDOCS%%%%DOCSDIR%%/FAQ
4
%%PORTDOCS%%%%DOCSDIR%%/NOTES
5
%%PORTDOCS%%@dirrm %%DOCSDIR%%
6
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/h-boetes.conf
7
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-marriott.conf
8
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/n-marriott.sh
9
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/screen-keys.conf
10
%%PORTEXAMPLES%%%%EXAMPLESDIR%%/tmux.vim
11
%%PORTEXAMPLES%%@dirrm %%EXAMPLESDIR%%
(-)files/patch-configure (-10 lines)
Removed Link Here
1
--- configure.orig	2009-10-11 09:21:43.000000000 +0800
2
+++ configure	2009-10-11 09:22:11.000000000 +0800
3
@@ -212,7 +212,6 @@
4
 #define HAVE_STRLCPY
5
 #define HAVE_STRTONUM
6
 #define HAVE_STRSEP
7
-#define HAVE_TREE_H
8
 #define HAVE_U_INT
9
 EOF
10
 	cat <<EOF >>$CONFIG_MK

Return to bug 140323