blob: 2c1ff67df458ac10d31185c82ec3e5797a142e71 (
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.7 2001/02/26 20:19:49 tron 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_DEPENDS+= msgfmt:../../devel/gettext
BUILD_DEPENDS+= ${LOCALBASE}/bin/autoheader:../../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"
|