blob: 2ed705cbed3f1f4251b95a9c84f7033eb1266f9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# New ports collection makefile for: IrcII Client
# Version required: 2.9
# Date created: 18 Oct 1994
# Whom: torstenb
#
# $NetBSD: Makefile,v 1.11 1998/03/10 15:25:43 frueauf Exp $
# FreeBSD Id: Makefile,v 1.14 1997/05/14 10:35:13 torstenb Exp
#
DISTNAME= ircii-4.4
PKGNAME= ircII-4.4
WRKSRC= ${WRKDIR}/ircii-4.4
CATEGORIES= net
MASTER_SITES= ftp://ircii.warped.com/pub/ircII/
MAINTAINER= mrg@eterna.com.au
GNU_CONFIGURE= yes
#CONFIGURE_ARGS+= --with-default-server=SERVER[:PORT]
MAN1= ircII.1 ircbug.1
PLIST_SRC= ${WRKDIR}/PLIST.tmp
pre-install:
@(if [ "X${MANZ}" != X"" ]; then \
GZSUFFIX=.gz; \
fi; \
${SED} -e 's|@.GZ@|'$$GZSUFFIX'|g' ${PKGDIR}/PLIST > ${PLIST_SRC})
post-install:
@if [ "X${MANZ}" != X"" ]; then \
${ECHO} Compressing help files; \
find ${PREFIX}/lib/irc/help -type f -print | xargs ${GZIP_CMD}; \
fi
.include <bsd.port.mk>
|