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

(-)vifm/Makefile (-7 / +7 lines)
Lines 6-33 Link Here
6
#
6
#
7
7
8
PORTNAME=	vifm
8
PORTNAME=	vifm
9
PORTVERSION=	0.6.2
9
PORTVERSION=	0.6.3
10
CATEGORIES=	misc
10
CATEGORIES=	misc
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
11
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}
12
12
13
MAINTAINER=	ports@FreeBSD.org
13
MAINTAINER=	kaspars@bankovskis.lv
14
COMMENT=	Ncurses based file manager with vi like keybindings
14
COMMENT=	Ncurses based file manager with vi like keybindings
15
15
16
OPTIONS=	VIFM_SCREEN "Use vifm with the screen program" off
16
LICENSE=	GPLv2
17
LICENSE_FILE=	${WRKSRC}/COPYING
17
18
18
WRKSRC=		${WRKDIR}/${PORTNAME}
19
OPTIONS=	VIFM_SCREEN "Use vifm with the screen program" off
19
20
20
USE_BZIP2=	yes
21
USE_BZIP2=	yes
21
USE_NCURSES=	yes
22
USE_NCURSES=	yes
22
USE_GMAKE=	yes
23
GNU_CONFIGURE=	yes
23
GNU_CONFIGURE=	yes
24
CONFIGURE_ARGS=	--without-gtk
24
CONFIGURE_ARGS=	--without-gtk
25
MAKE_ARGS=	ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOHEADER="${TRUE}" \
25
MAKE_ARGS=	ACLOCAL="${TRUE}" AUTOCONF="${TRUE}" AUTOHEADER="${TRUE}" \
26
		AUTOMAKE="${TRUE}"
26
		AUTOMAKE="${TRUE}"
27
27
28
MAN1=		vifm.1
28
MAN1=		vifm.1
29
PLIST_FILES=	bin/pauseme \
29
PLIST_FILES=	bin/vifm \
30
		bin/vifm \
30
		bin/vifm-pause \
31
		%%DATADIR%%/startup \
31
		%%DATADIR%%/startup \
32
		%%DATADIR%%/vifm-help.txt \
32
		%%DATADIR%%/vifm-help.txt \
33
		%%DATADIR%%/vifm.txt \
33
		%%DATADIR%%/vifm.txt \
(-)vifm/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (vifm-0.6.2.tar.bz2) = 8375f0cce8e1a703cf97322dbbab7ce2fc3be2b2ee072085b10623510b88c137
1
SHA256 (vifm-0.6.3.tar.bz2) = 7b6ac1056e7fbca46fb8eb1a40f31c92fc5694b19ca4267fc63e9e295d8cb3ec
2
SIZE (vifm-0.6.2.tar.bz2) = 333249
2
SIZE (vifm-0.6.3.tar.bz2) = 386861
(-)vifm/files/patch-src__fileops.c (+11 lines)
Line 0 Link Here
1
--- src/fileops.c.orig	2011-07-21 15:59:01.000000000 +0300
2
+++ src/fileops.c	2011-08-29 22:03:45.000000000 +0300
3
@@ -1255,7 +1255,7 @@
4
 
5
 	stat(temp_file, &st_after);
6
 
7
-	if(memcmp(&st_after.st_mtim, &st_before.st_mtim,
8
+	if(memcmp(&st_after.st_mtime, &st_before.st_mtime,
9
 			sizeof(st_after.st_mtime)) == 0)
10
 	{
11
 		unlink(temp_file);
(-)vifm/files/patch-src__status.c (-12 lines)
Lines 1-12 Link Here
1
--- src/status.c.orig	2011-06-19 22:52:25.000000000 +0900
2
+++ src/status.c	2011-06-26 15:27:19.000000000 +0900
3
@@ -41,7 +41,9 @@
4
 	curr_stats.dirsize_cache = 0;
5
 	curr_stats.fast_run = 0;
6
 	curr_stats.errmsg_shown = 0;
7
+#ifdef HAVE_LIBGTK
8
 	curr_stats.gtk_available = 0;
9
+#endif
10
 }
11
 
12
 /* vim: set tabstop=2 softtabstop=2 shiftwidth=2 noexpandtab cinoptions-=(0 : */

Return to bug 160297