diff options
author | Alfred Perlstein <alfred@FreeBSD.org> | 2004-07-05 10:28:14 +0000 |
---|---|---|
committer | Alfred Perlstein <alfred@FreeBSD.org> | 2004-07-05 10:28:14 +0000 |
commit | 1d0cece6aae4d384c9004448ca0b06ac9b2a7b09 (patch) | |
tree | 3150582fa6786fe0d550319920b17a5d46cf595d /irc/insub/Makefile | |
parent | a26918e4b7a678153d7e1acfe41a0c929de0c2ba (diff) |
Notes
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 |