blob: c61d685c5560944e2f916f1a805186edef900f9c (
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# $NetBSD: Makefile.common,v 1.18 2003/01/10 07:52:18 cjep Exp $
DISTNAME= mc-4.5.51
CATEGORIES+= sysutils
MASTER_SITES+= ${MASTER_SITE_GNOME:=stable/sources/mc/}
MAINTAINER= jlam@netbsd.org
HOMEPAGE= http://www.gnome.org/mc/
BUILD_USES_MSGFMT= yes
CONFLICTS+= mc-[0-9]* gmc-[0-9]*
DISTINFO_FILE= ${.CURDIR}/../../sysutils/mc/distinfo
PATCHDIR= ${.CURDIR}/../../sysutils/mc/patches
USE_BUILDLINK2= yes
USE_PKGLOCALEDIR= yes
USE_GMAKE= yes
GNU_CONFIGURE= # defined
CONFIGURE_ARGS+= --without-included-gettext
CONFIGURE_ARGS+= --with-netrc --with-slang
CONFIGURE_ARGS+= --with-samba
CONFIGURE_ARGS+= --without-tk
# Don't pick up readline if it's installed in the build environment.
#
CONFIGURE_ENV+= ac_cv_header_history_h=no
CONFIGURE_ENV+= ac_cv_header_readline_h=no
CONFIGURE_ENV+= ac_cv_header_readline_history_h=no
CONFIGURE_ENV+= ac_cv_header_readline_readline_h=no
CONFIGURE_ENV+= LOCALBASE="${LOCALBASE}"
CONFIGURE_ENV+= PKGLOCALEDIR="${PKGLOCALEDIR}"
LIBS+= -lm -ltermcap # -lslang
CPPFLAGS+= -Dunix
.include "../../mk/bsd.prefs.mk"
.if ${OPSYS} == "SunOS"
CFLAGS+= -DSunOS
.endif
.include "../../devel/gettext-lib/buildlink2.mk"
.include "../../devel/glib/buildlink2.mk"
.include "../../devel/libslang/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|