blob: 71d0529f0d30a0bba82a71f65fb097a52a851f6f (
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
29
|
# $NetBSD: Makefile,v 1.27 2012/03/03 00:13:36 wiz Exp $
DISTNAME= most-5.0.0a
PKGREVISION= 4
CATEGORIES= misc
MASTER_SITES= ftp://space.mit.edu/pub/davis/most/
MAINTAINER= rhwang@bigpanda.com
HOMEPAGE= http://www.jedsoft.org/most/
COMMENT= Pager (like less) which has support for windows and binary files
PKG_DESTDIR_SUPPORT= user-destdir
MAKE_JOBS_SAFE= no
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --without-x
CONFIGURE_ARGS+= --with-slang=${BUILDLINK_PREFIX.libslang2}
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "Darwin"
# prevent duplicate definition of zopen
CFLAGS+= -D_POSIX_C_SOURCE
.endif
.include "../../devel/libslang2/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|