blob: ddfd328e95a237dac9fc0ac2240815e93ecebd3d (
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
|
# $NetBSD: Makefile,v 1.21 2006/12/17 17:17:19 joerg Exp $
DISTNAME= most-4.9.0
PKGREVISION= 1
CATEGORIES= misc
MASTER_SITES= ftp://space.mit.edu/pub/davis/most/ \
ftp://ftp.uni-stuttgart.de/pub/unix/misc/slang/most/
MAINTAINER= rhwang@bigpanda.com
HOMEPAGE= http://www.jedsoft.org/most/
COMMENT= Pager (like less) which has support for windows and binary files
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --without-x
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Darwin"
# prevent duplicate definition of zopen
CFLAGS+= -D_POSIX_C_SOURCE
.endif
.include "../../devel/libslang/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|