blob: 3ecad0e29260b079f9ece6df939742b62b112808 (
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
50
51
52
53
54
55
56
57
58
|
# $NetBSD: Makefile.common,v 1.8 2001/03/27 03:20:17 hubertf 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/
DEPENDS+= libslang-*:../../devel/libslang
DEPENDS+= glib>=1.2.0:../../devel/glib
BUILD_USES_MSGFMT= yes
BUILD_DEPENDS+= autoconf-2.13:../../devel/autoconf
CONFLICTS+= mc-* gmc-*
FILESDIR= ${.CURDIR}/../../sysutils/mc/files
PATCHDIR= ${.CURDIR}/../../sysutils/mc/patches
USE_GMAKE= yes
USE_LIBINTL= 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+= LOCALEDIR="${LOCALEDIR}"
CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}"
CONFIGURE_ENV+= LIBS="${LIBS}"
LIBS+= -lm -ltermcap # -lslang
LIBS+= -lintl # check for gettext is broken
CPPFLAGS+= -I${LOCALBASE}/include # slang.h
CPPFLAGS+= -Dunix
.include "../../mk/bsd.prefs.mk"
# The directory in which locale files are found is:
#
# ${PREFIX}/${LOCALEDIR}/locale/<lang>/LC_MESSAGES
#
.if ${OPSYS} == "SunOS"
LOCALEDIR= lib
.else
LOCALEDIR= share
.endif
.include "../../mk/bsd.pkg.mk"
|