diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-23 09:21:25 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-23 09:21:25 +0000 |
commit | c4e8d1383c9e5cd763a05a378d9e31e8778582fd (patch) | |
tree | 2c912a727f2d499e83887f42b53ec826bcdd9ec2 /irc/epic4/Makefile | |
parent | Replace a ruby-iconv dependency with USE_RUBY_FEATURES=iconv. (diff) |
- Update to version 2.0
PR: ports/64034
Submitted by: Jeremy Chadwick <freebsd@jdc.parodius.com>
Approved by: maintainer timeout
Notes
Notes:
svn path=/head/; revision=105025
Diffstat (limited to 'irc/epic4/Makefile')
-rw-r--r-- | irc/epic4/Makefile | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/irc/epic4/Makefile b/irc/epic4/Makefile index 2bfb396f916a..5b392a7cfd53 100644 --- a/irc/epic4/Makefile +++ b/irc/epic4/Makefile @@ -6,32 +6,38 @@ # PORTNAME= epic4 -PORTVERSION= 1.1.16 -PORTREVISION= 1 +PORTVERSION= 2.0 CATEGORIES= irc ipv6 -MASTER_SITES= ftp://ftp.epicsol.org/pub/epic/EPIC4-ALPHA/ \ - ftp://ftp.archive.de.uu.net/pub/unix/irc/epic/EPIC4-ALPHA/ +MASTER_SITES= ftp://ftp.epicsol.org/pub/epic/EPIC4-PRODUCTION/ \ + ftp://ftp.irc.org/irc/clients/unix/epic/ \ + ftp://ftp.parodius.com/pub/epic/EPIC4-PRODUCTION/ \ + ftp://planetmirror.com/pub/irc/epic/ \ + ftp://ftp.eu.uu.net/pub/unix/irc/epic/ \ + ftp://totem.fix.no/pub/mirrors/epic/ \ + ftp://ftp.freenet.de/pub/ftp.prbh.org/pub/epic/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ ${DISTFILE_HELP} MAINTAINER= anders@andersa.net COMMENT= The (E)nhanced (P)rogrammable (I)RC-II (C)lient -LIB_DEPENDS= tcl84.1:${PORTSDIR}/lang/tcl84 - -USE_REINPLACE= yes -USE_PERL5= yes USE_OPENSSL= yes +USE_PERL5= yes GNU_CONFIGURE= yes +CONFIGURE_ARGS+= --without-tcl + +.if defined(WITH_TCL) +LIB_DEPENDS= tcl84:${PORTSDIR}/lang/tcl84 +CONFIGURE_ARGS+= --with-tcl +.endif MAN1= epic.1 -DISTFILE_HELP= ${PORTNAME}-help-20031106.tar.gz +DISTFILE_HELP= ${PORTNAME}-help-20040308.tar.gz post-extract: - @${FIND} ${WRKSRC} -type d -name CVS | ${XARGS} ${RM} -rf + @${FIND} ${WRKDIR} -type d -name CVS | ${XARGS} ${RM} -rf post-patch: - @${REINPLACE_CMD} -e 's|8.3|8.4|g' ${WRKSRC}/configure @${RM} ${WRKDIR}/help/Makefile post-install: |