summaryrefslogtreecommitdiff
path: root/misc/vifm/Makefile
blob: 2d139b3178bd4dfe6180f86c6ba42721a90b802c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# New ports collection makefile for: vifm
# Date created:                      09 August 2002
# Whom:                              Stefan Walter <swalter@lettermax.de>
#
# $FreeBSD$
#

PORTNAME=	vifm
PORTVERSION=	0.4
CATEGORIES=	misc
MASTER_SITES=	SFE

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Ncurses based file manager with vi like keybindings

.if defined(WITH_VIFM_SCREEN)
RUN_DEPENDS=	screen:${PORTSDIR}/sysutils/screen
.endif

GNU_CONFIGURE=	yes
USE_GMAKE=	yes
USE_BZIP2=	yes

PLIST_FILES=	bin/pauseme \
		bin/vifm \
		share/vifm/vifm-help.txt \
		share/vifm/vifm.txt \
		share/vifm/vifm.vim
PLIST_DIRS=	share/vifm

post-patch:
	@${REINPLACE_CMD} -e 's/resize_term/resizeterm/g' \
		${WRKSRC}/src/ui.c

.if defined(WITH_VIFM_SCREEN)
pre-build:
	@${REINPLACE_CMD} -e "s/cfg.use_screen = 0/cfg.use_screen = 1/" \
		${WRKSRC}/src/config.c
	@${REINPLACE_CMD} -e "s/USE_SCREEN=0/USE_SCREEN=1/" \
		${WRKSRC}/src/vifmrc
.else
pre-everything::
	@${ECHO_CMD} "You can define WITH_VIFM_SCREEN to add screen as a dependency."
.endif

.include <bsd.port.mk>