blob: c9bde2e80daced7e71f7603b92b80aa5048765fd (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# $NetBSD: Makefile,v 1.9 2001/07/15 12:22:16 jlam Exp $
# FreeBSD Id: Makefile,v 1.14 1997/05/14 10:35:13 torstenb Exp
#
DISTNAME= ircii-20010612
PKGNAME= ircII-20010612
WRKSRC= ${WRKDIR}/ircii-20010612
CATEGORIES= chat
MASTER_SITES= ftp://ircftp.au.eterna.com.au/pub/ircII/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= packages@netbsd.org
COMMENT= The 'Internet Relay Chat' and 'Internet Citizens Band' Client
CONFLICTS= blackened-*
.include "../../mk/bsd.prefs.mk"
USE_BUILDLINK_ONLY= yes
GNU_CONFIGURE= yes
.if defined(DEFAULT_IRC_SERVER)
CONFIGURE_ARGS+= --with-default-server=${DEFAULT_IRC_SERVER}
.endif
BUILD_DEFS+= USE_INET6
# Note: this pkg auto-detects IPv6 without regarding USE_INET6.
# (Leave the above line in to still get it into the README-IPv6.html!)
PLIST_SRC= ${WRKDIR}/PLIST.tmp
BUILD_DEFS+= USE_SOCKS
# Include SOCKS firewall support
.if defined(USE_SOCKS) && (${USE_SOCKS} == 4 || ${USE_SOCKS} == 5)
CONFIGURE_ARGS+= --with-socks${USE_SOCKS}=${BUILDLINK_DIR}
.if ${USE_SOCKS} == 4
.include "../../net/socks4/buildlink.mk"
.else
.include "../../net/socks5/buildlink.mk"
.endif
.endif
.if (${OPSYS} == SunOS)
LIBS+= -lnsl
.endif
.if defined(IRCII_CONFIGURE_ARGS)
CONFIGURE_ARGS+= ${IRCII_CONFIGURE_ARGS}
.endif
.if defined(IRCII_CONFIGURE_ENV)
CONFIGURE_ENV+= ${IRCII_CONFIGURE_ENV}
.endif
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}/share/irc/help -type f -print | ${XARGS} ${GZIP_CMD}; \
fi
${RM} -f ${PREFIX}/man/man1/irc.1
${LN} -s ircII.1 ${PREFIX}/man/man1/irc.1
.include "../../mk/bsd.pkg.mk"
|