1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/comms/minicom/Makefile
Johan van Selst c23faf5994 Use plist directives instead of chown to allow build as non-root
Resulting package is identical

Submitted by:	Kimmo Paasiala <kpaasial@icloud.com>
2014-06-22 09:27:13 +00:00

48 lines
1.5 KiB
Makefile

# Created by: obrien@cs.ucdavis.edu
# $FreeBSD$
PORTNAME= minicom
PORTVERSION= 2.7
CATEGORIES= comms
MASTER_SITES= https://alioth.debian.org/frs/download.php/file/3977/ \
http://alioth.debian.org/frs/download.php/file/3977/ \
http://fossies.org/linux/misc/
MAINTAINER= johans@FreeBSD.org
COMMENT= MS-DOS Telix serial communication program "workalike"
RUN_DEPENDS= lrz:${PORTSDIR}/comms/lrzsz
OPTIONS_DEFINE= DOCS NLS
OPTIONS_SUB= yes
NLS_USES= gettext
NLS_CONFIGURE_ENABLE= nls
USES= iconv
CPPFLAGS+= -I${LOCALBASE}/include
LIBS+= -L${LOCALBASE}/lib ${ICONV_LIB} -lcurses
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --enable-dfl-baud=57600 \
--sysconfdir=${PREFIX}/etc/minicom \
--enable-lock-dir=/var/spool/lock \
--enable-dfl-port=/dev/cuau0
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:
${INSTALL} -d -m 0755 ${STAGEDIR}${PREFIX}/etc/minicom
${INSTALL} -d -o root -g wheel -m 0755 ${STAGEDIR}${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/AUTHORS ${STAGEDIR}${DOCSDIR}/
${INSTALL_DATA} ${WRKSRC}/COPYING ${STAGEDIR}${DOCSDIR}/
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${STAGEDIR}${DOCSDIR}/
(umask 022 && cd ${WRKSRC} && ${TAR} --exclude '*/Makefile*' \
--exclude '*.orig' -chf - extras doc | ${TAR} -xf - -C \
${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>