mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
44e8f1a6f3
* Revamp support for the 437 numeric. * Remove spurious "server" in "Connecting to port %d of server %s" * Compensate for nasty ickage in $leftpc() to permit getting 1 char * Fix $cparse() to expand the "" string after interpolation, not before * Punt if the user does /bind metaX where X > MAX_META, don't crash. * Fix probably null deref just after channel_going_away called * Fix segfault handler so it honors /xdebug crash as well. * Fix resize_window to handle RESIZE_ABS more graciously. * Add /xdebug slash_hack, to inhibit $^"(<foo>) and $^"#<foo> Submitted by: MAINTAINER <anders@codefactory.se>
34 lines
802 B
Makefile
34 lines
802 B
Makefile
# New ports collection makefile for: epic4
|
|
# Date created: 11 November 1998
|
|
# Whom: Ben Hutchinson <benhutch@xfiles.org.uk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= epic4
|
|
PORTVERSION= 0.9.2
|
|
CATEGORIES= irc
|
|
MASTER_SITES= ftp://ftp.epicsol.org/pub/epic/EPIC4-BETA/ \
|
|
ftp://ftp.sanyusan.se/pub/epic/EPIC4-BETA/ \
|
|
ftp://totem.fix.no/pub/mirrors/epic/EPIC4-BETA/
|
|
DISTFILES= epic4-0.9.2.tar.gz epic4pre2-help.tar.gz
|
|
|
|
MAINTAINER= anders@codefactory.se
|
|
|
|
DIST_SUBDIR= epic4
|
|
|
|
EXTRACT_ONLY= epic4-0.9.2.tar.gz
|
|
WRKSRC= ${WRKDIR}/epic4-0.9.2
|
|
GNU_CONFIGURE= yes
|
|
|
|
MAN1= epic.1
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && make INSTALL_PROGRAM="${INSTALL_PROGRAM}" \
|
|
INSTALL_DATA="${INSTALL_DATA}" install
|
|
|
|
post-install:
|
|
cd ${PREFIX}/share/epic && tar zxf ${DISTDIR}/${DIST_SUBDIR}/epic4pre2-help.tar.gz
|
|
|
|
.include <bsd.port.mk>
|