07dd3147c6
and to support the "inet6" option instead. Remaining usage of USE_INET6 was solely for the benefit of the scripts that generate the README.html files. Replace: BUILD_DEFS+= USE_INET6 with BUILD_DEFS+= IPV6_READY and teach the README-generation tools to look for that instead. This nukes USE_INET6 from pkgsrc proper. We leave a tiny bit of code to continue to support USE_INET6 for pkgsrc-wip until it has been nuked from there as well.
58 lines
1.4 KiB
Makefile
58 lines
1.4 KiB
Makefile
# $NetBSD: Makefile,v 1.48 2007/09/07 22:12:11 jlam Exp $
|
|
|
|
DISTNAME= ircii-${VERS}
|
|
PKGNAME= ircII-${VERS}
|
|
CATEGORIES= chat
|
|
MASTER_SITES= ftp://ircii.warped.com/pub/ircII/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.eterna.com.au/ircii/
|
|
COMMENT= The 'Internet Relay Chat' and 'Internet Citizens Band' Client
|
|
|
|
CONFLICTS= blackened-[0-9]*
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
VERS= 20060725
|
|
PLIST_SUBST+= VERS=${VERS:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
WRKSRC= ${WRKDIR}/ircii-${VERS}
|
|
GNU_CONFIGURE= yes
|
|
.if defined(DEFAULT_IRC_SERVER)
|
|
CONFIGURE_ARGS+= --with-default-server=${DEFAULT_IRC_SERVER:Q}
|
|
.endif
|
|
|
|
# This pkg auto-detects IPv6.
|
|
BUILD_DEFS+= IPV6_READY
|
|
|
|
.include "options.mk"
|
|
|
|
# Allow customizations from ${MAKECONF}
|
|
CONFIGURE_ARGS+= ${IRCII_CONFIGURE_ARGS}
|
|
CONFIGURE_ENV+= ${IRCII_CONFIGURE_ENV}
|
|
|
|
LDFLAGS.SunOS+= -lsocket -lnsl
|
|
|
|
.if ${OPSYS} == "Interix"
|
|
CONFIGURE_ARGS+= --with-non-blocking=none
|
|
.endif
|
|
|
|
# Optionally install compressed help files if MANZ is defined.
|
|
.if defined(MANZ)
|
|
PLIST_SUBST+= GZSUFFIX=".gz"
|
|
DOC_COMPRESS_ARGS= -z ${PREFIX}
|
|
.else
|
|
PLIST_SUBST+= GZSUFFIX=
|
|
DOC_COMPRESS_ARGS= ${PREFIX}
|
|
.endif
|
|
|
|
post-install:
|
|
${AWK} '/^share\/irc\/help\// { sub("\\$${GZSUFFIX}$$", ""); print }' \
|
|
${PLIST_SRC} | \
|
|
${SETENV} PATH=${PATH:Q} PKG_VERBOSE=${PKG_VERBOSE:Q} \
|
|
${SH} ${PKGSRCDIR}/mk/plist/doc-compress ${DOC_COMPRESS_ARGS}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|