freebsd-ports/irc/insub/Makefile
Alfred Perlstein e62c3db63a update from 8.3 to 8.6.
you can now filter arbitrary programs/text through this wonderful
program!

8.6: Tue Apr 13 15:22:01 PDT 2004
  - add flags for cli: -stdin will use data from STDIN
  - add flags for cli: -cat, -exec to hook irssi functionality
  - stop processing if we don't have text after first pass
8.5: Tue Apr 13 13:03:30 PDT 2004
  - remove legacy open3() and use IPC::Open3 -- works in 5.8 now
  - support for specifying color in -4 .. for example -4red
  - added some more spookwords
  - added the -unused command
8.4: This release did not go public
2004-04-14 19:09:07 +00:00

44 lines
1.1 KiB
Makefile

# New ports collection makefile for: insub
# Date created: 27 Dec 2003
# Whom: Alfred Perlstein <alfred@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= insub
PORTVERSION= 8.6
PORTREVISION?= 0
CATEGORIES?= irc
MASTER_SITES= http://gruntle.org/projects/irssi/insub/
MAINTAINER?= alfred@FreeBSD.org
COMMENT?= Some scripts for expressing how you feel on irc and the web
NO_BUILD= YES
SCRIPT= ${PORTNAME}.pl
BUILD_DEPENDS+= cowsay:${PORTSDIR}/games/cowsay
RUN_DEPENDS+= figlet:${PORTSDIR}/misc/figlet
RUN_DEPENDS+= ${SITE_PERL}/Term/ANSIColor.pm:${PORTSDIR}/devel/p5-Term-ANSIColor
.include <bsd.port.pre.mk>
post-install:
@${ECHO}
@${ECHO} " insub has been installed in irssi's global script store."
@${ECHO} " To run, you should type '/script load insub' from within"
@${ECHO} " the irssi client."
@${ECHO}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${SCRIPT} ${LOCALBASE}/bin/${SCRIPT:R}
${MKDIR} ${LOCALBASE}/share/irssi/scripts/
${INSTALL_DATA} ${WRKSRC}/${SCRIPT} \
${LOCALBASE}/share/irssi/scripts/${SCRIPT}
for i in ${WRKSRC}/cows/* ; do \
${INSTALL_DATA} $$i ${LOCALBASE}/share/cows; \
done
.include <bsd.port.post.mk>