blob: 410f527ba1cb2049761cdab09291245fbc106d60 (
plain)
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
|
# $NetBSD: Makefile,v 1.1.1.1 2002/12/11 21:09:25 jmmv Exp $
#
DISTNAME= vifm-0.1
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=vifm/}
MAINTAINER= swalter@lettermax.de
HOMEPAGE= http://vifm.sourceforge.net/
COMMENT= Ncurses based file manager with vi like keybindings
GNU_CONFIGURE= yes
USE_BUILDLINK2= yes
USE_GMAKE= yes
# Required ncurses function: redrawwin(3n)
USE_NCURSES= yes
pre-configure:
@${SED} -e "s/cfg.use_screen = 0/cfg.use_screen = 1/" \
${WRKSRC}/src/config.c > ${WRKSRC}/src/config.c.new && \
${MV} ${WRKSRC}/src/config.c.new ${WRKSRC}/src/config.c
@${SED} -e "s/USE_SCREEN=0/USE_SCREEN=1/" \
${WRKSRC}/src/vifmrc0.1 > ${WRKSRC}/src/vifmrc0.1.new && \
${MV} ${WRKSRC}/src/vifmrc0.1.new ${WRKSRC}/src/vifmrc0.1
.include "../../devel/ncurses/buildlink2.mk"
.include "../../mk/pthread.buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|