PORTNAME= orville-write PORTVERSION= 2.55 PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= http://unixpapa.com/software/ MAINTAINER= bofh@FreeBSD.org COMMENT= Advanced replacement for write/mesg WWW= https://unixpapa.com/write.html GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE=yes CFLAGS+= -Wno-return-type PLIST_FILES= "@(,,4711) bin/amin" "@(,,4711) bin/helpers" "@(,,4711) bin/huh" \ bin/jot "@(,,4711) bin/mesg" bin/tel bin/telegram \ "@(,,6711) bin/write" etc/orville.conf etc/wrthist etc/wrttmp \ share/man/man1/amin.1.gz share/man/man1/helpers.1.gz share/man/man1/huh.1.gz \ share/man/man1/mesg.1.gz share/man/man1/write.1.gz .include .if ${OPSYS} == FreeBSD && ( ${OSVERSION} >= 1400079 || ( ${OSVERSION} >= 1302505 && ${OSVERSION} < 1400000 )) CFLAGS+= -Wno-error=int-conversion .endif do-install: .for i in amin helpers huh mesg ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/bin .endfor .for i in write ${INSTALL_PROGRAM} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/bin .endfor .for i in jot tel telegram ${LN} -sf write ${STAGEDIR}${PREFIX}/bin/${i} .endfor .for i in orville.conf ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/etc .endfor .for i in wrthist wrttmp ${INSTALL_DATA} -m 600 /dev/null ${STAGEDIR}${PREFIX}/etc/${i} .endfor .for i in amin.1 helpers.1 huh.1 mesg.1 write.1 ${INSTALL_MAN} ${WRKSRC}/${i} ${STAGEDIR}${PREFIX}/share/man/man1 .endfor .include