diff options
Diffstat (limited to 'irc/insub/Makefile')
-rw-r--r-- | irc/insub/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/irc/insub/Makefile b/irc/insub/Makefile index 5610a6ce197f..79450b02436a 100644 --- a/irc/insub/Makefile +++ b/irc/insub/Makefile @@ -6,7 +6,7 @@ # PORTNAME= insub -PORTVERSION= 8.9 +PORTVERSION= 9.1 PORTREVISION?= 0 CATEGORIES?= irc MASTER_SITES= http://gruntle.org/projects/irssi/insub/ @@ -37,7 +37,10 @@ do-install: ${INSTALL_DATA} ${WRKSRC}/${SCRIPT} \ ${LOCALBASE}/share/irssi/scripts/${SCRIPT} for i in ${WRKSRC}/cows/* ; do \ - ${INSTALL_DATA} $$i ${LOCALBASE}/share/cows; \ + case `basename $$i` in \ + box.cow|jkh.cow|tux-stab.cow) ;; \ + *) ${INSTALL_DATA} $$i ${LOCALBASE}/share/cows; \ + esac \ done |