aboutsummaryrefslogtreecommitdiffstats
path: root/misc/mc/Makefile
blob: 8bbd28962d10e776412c1b87876f72fb85b71eaa (plain) (blame)
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
59
60
61
62
63
64
65
66
67
68
69
# New ports collection makefile for:    mc
# Date created:     15 Jul 1995
# Whom:         torstenb@FreeBSD.org
#
# $FreeBSD$
#

PORTNAME=   mc
PORTVERSION=    4.6.0
PORTREVISION=   2
CATEGORIES= misc shells
MASTER_SITES=   ${MASTER_SITE_SUNSITE}
MASTER_SITE_SUBDIR= utils/file/managers/mc/

MAINTAINER= fjoe@FreeBSD.org
COMMENT=    Midnight Commander, a free Norton Commander Clone

.include <bsd.port.pre.mk>

LIB_DEPENDS=    glib-2.0.200:${PORTSDIR}/devel/glib20 \
        intl.4:${PORTSDIR}/devel/gettext
BUILD_DEPENDS=  pkg-config:${PORTSDIR}/devel/pkgconfig

USE_GMAKE=  yes
USE_REINPLACE=  yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --with-samba --with-configdir=${LOCALBASE}/etc \
        --with-codepagedir=${LOCALBASE}/etc/codepages
CONFIGURE_TARGET=   --target=${MACHINE_ARCH}-unknown-freebsd${OSREL}

.if !defined(WITHOUT_ICONV)
CONFIGURE_ARGS+=--enable-charset
LIB_DEPENDS+=   iconv.3:${PORTSDIR}/converters/libiconv
PLIST_SUB=  CHARSETS=""
.else
PLIST_SUB=  CHARSETS="@comment "
.endif

.if ${ARCH} == "alpha"
#
# something is wrong with slang on alpha: mc enters an infinite loop
# when calling has_colors() during terminal init (colors.c:250)
WITHOUT_SLANG=  yes
.endif

.if defined(WITHOUT_SLANG)
CONFIGURE_ARGS+=--with-screen=ncurses
.else
CONFIGURE_ARGS+=--with-screen=slang
CONFIGURE_ENV=  CPPFLAGS="-I ${LOCALBASE}/include" \
        LDFLAGS="-ltermcap -L ${LOCALBASE}/lib"
LIB_DEPENDS+=   slang.1:${PORTSDIR}/devel/libslang
.endif

.if defined(WITHOUT_SUBSHELL)
CONFIGURE_ARGS+=--without-subshell
.endif

MAN1=       mc.1 mcedit.1 mcview.1

post-patch:
    @${REINPLACE_CMD} -e 's|/usr/bin/zip|${LOCALBASE}/bin/zip|' \
        -e 's|/usr/bin/unzip|${LOCALBASE}/bin/unzip|' \
        ${WRKSRC}/configure

post-install:
    @${LN} -sf mc ${PREFIX}/bin/midc

.include <bsd.port.post.mk>