aboutsummaryrefslogtreecommitdiffstats
path: root/comms/minicom/Makefile
blob: a59541ba7e6ea0e72322f45a33742e1de5f6e6f4 (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
70
71
72
73
74
# Created by: obrien@cs.ucdavis.edu
# $FreeBSD$

PORTNAME=   minicom
PORTVERSION=    2.6.2
PORTREVISION=   1
CATEGORIES= comms
MASTER_SITES=   http://alioth.debian.org/frs/download.php/3869/

MAINTAINER= johans@FreeBSD.org
COMMENT=    An MS-DOS Telix serial communication program "workalike"

OPTIONS_DEFINE= LRZSZ
OPTIONS_DEFAULT=LRZSZ
LRZSZ_DESC= Install X/Y/ZMODEM protocol handlers

USE_ICONV=  yes
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
GNU_CONFIGURE=  yes
CONFIGURE_ARGS+=    --enable-dfl-baud=57600 \
            --sysconfdir=${PREFIX}/etc/minicom \
            --enable-lock-dir=/var/spool/lock \
            --enable-dfl-port=${MINICOM_DEFAULT_PORT} \
            LDFLAGS="${LDFLAGS}"
MAKE_ARGS+= LIBS+="-liconv -lcurses"

MAN1=       minicom.1 runscript.1 ascii-xfr.1 xminicom.1

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MLRZSZ}
RUN_DEPENDS+=   lrz:${PORTSDIR}/comms/lrzsz
.endif

.if ${PORT_OPTIONS:MNLS}
USE_GETTEXT=    yes
PLIST_SUB+= NLS=""
.else
CONFIGURE_ARGS+=--disable-nls
PLIST_SUB+= NLS="@comment "
.endif

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 800045
MINICOM_DEFAULT_PORT?=  /dev/cuad0
.else
MINICOM_DEFAULT_PORT?=  /dev/cuau0
.endif

post-patch:
    ${REINPLACE_CMD} -e "s@/usr/local/bin/@${LOCALBASE}/bin/@; \
        s@/sz@/lsz@;s@/sb@/lsb@;s@/sx@/lsx@;s@/rz@/lrz@; \
        s@/rb@/lrb@;s@/rx@/lrx@" ${WRKSRC}/src/rwconf.c
    ${REINPLACE_CMD} -E -e "s@^(SUBDIRS = .*) intl@\1@" \
        ${WRKSRC}/Makefile.in

post-install:
    ${CHOWN} uucp:dialer ${PREFIX}/bin/minicom
    ${CHMOD} 4511 ${PREFIX}/bin/minicom
    ${INSTALL} -d -o root -g wheel -m 0755 ${PREFIX}/etc/minicom
    ${CHOWN} uucp ${PREFIX}/etc/minicom
.if ${PORT_OPTIONS:MDOCS}
    ${INSTALL} -d -o root -g wheel -m 0755 ${DOCSDIR}
    ${INSTALL_DATA} ${WRKSRC}/AUTHORS ${DOCSDIR}/
    ${INSTALL_DATA} ${WRKSRC}/COPYING ${DOCSDIR}/
    ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${DOCSDIR}/
    (umask 022 && cd ${WRKSRC} && ${TAR} --exclude '*/Makefile*' \
         --exclude '*.orig' -chf - extras doc | ${TAR}  -xf - -C \
        ${DOCSDIR})
.endif

.include <bsd.port.post.mk>