View | Details | Raw Unified | Return to bug 105638 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile Fri Nov 17 09:53:11 2006 (-4 / +28 lines)
Lines 6-20 Link Here
6
#
6
#
7
7
8
PORTNAME=      epic4
8
PORTNAME=      epic4
9
PORTVERSION=   2.4
9
PORTVERSION=   2.6
10
PORTREVISION=  1
10
PORTREVISION=  1
11
CATEGORIES=    irc ipv6
11
CATEGORIES=    irc ipv6
12
MASTER_SITES=  ftp://ftp.prbh.org/pub/epic/EPIC4-PRODUCTION/ \
12
MASTER_SITES=  ftp://ftp.prbh.org/pub/epic/EPIC4-PRODUCTION/ \
13
               ftp://ftp.irc.org/irc/clients/unix/epic/EPIC4-PRODUCTION/ \
13
               ftp://ftp.irc.org/irc/clients/unix/epic/EPIC4-PRODUCTION/ \
14
               ftp://ftp.parodius.com/pub/epic/EPIC4-PRODUCTION/ \
14
               ftp://ftp.parodius.com/pub/epic/EPIC4-PRODUCTION/ \
15
               http://ftp.freenet.de/pub/ftp.prbh.org/pub/epic/EPIC4-PRODUCTION/ \
15
               http://ftp.freenet.de/pub/ftp.prbh.org/pub/epic/EPIC4-PRODUCTION/ \
16
               ftp://ftp.eu.uu.net/pub/unix/irc/epic/EPIC4-PRODUCTION/ \
16
               ftp://ftp.eu.uu.net/pub/unix/irc/epic/EPIC4-PRODUCTION/
17
               ftp://totem.fix.no/pub/mirrors/epic/EPIC4-PRODUCTION/
18
DISTFILES=     ${DISTNAME}${EXTRACT_SUFX} \
17
DISTFILES=     ${DISTNAME}${EXTRACT_SUFX} \
19
               ${PORTNAME}-help-20050315.tar.gz
18
               ${PORTNAME}-help-20050315.tar.gz
20
19
Lines 29-35 Link Here
29
28
30
OPTIONS=       IPV6    "IPv6 support"          on \
29
OPTIONS=       IPV6    "IPv6 support"          on \
31
               TCL     "TCL support"           on \
30
               TCL     "TCL support"           on \
32
               PERL    "Perl scripting support" off
31
               PERL    "Perl scripting support" off \
32
               SOCKS5  "Enable SOCKS5 proxy support" off \
33
               SSL     "Enable SSL support" off \
34
               TERMCAP "Refuse to use terminfo/ncurses" off
33
35
34
.include <bsd.port.pre.mk>
36
.include <bsd.port.pre.mk>
35
37
Lines 59-64 Link Here
59
.endif
61
.endif
60
USE_PERL5=     yes
62
USE_PERL5=     yes
61
CONFIGURE_ARGS+=       --with-perl=${SITE_PERL}/../../${PERL_VER}/mach/CORE
63
CONFIGURE_ARGS+=       --with-perl=${SITE_PERL}/../../${PERL_VER}/mach/CORE
64
.endif
65
66
## WITH_SOCKS5:                enable SOCKS5 support
67
#
68
.if defined(WITH_SOCKS5)
69
.if exists(${LOCALBASE}/lib/libdsocks.so)
70
BROKEN=                        Optional socks5 support will only build against net/socks5 which conflicts with net/dante
71
.endif
72
BUILD_DEPENDS+=                ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
73
CONFIGURE_ARGS+=       --with-socks5=/usr/local/include
74
.endif
75
76
## WITH_SSL            enable SSL support
77
#
78
.if defined(WITH_SSL)
79
CONFIGURE_ARGS+=       --with-ssl
80
.endif
81
82
## WITH_TERMCAP                forceably refuse to use terminfo/ncurses
83
#
84
.if defined(WITH_TERMCAP)
85
CONFIGURE_ARGS+=       --with-termcap
62
.endif
86
.endif
63
87
64
post-extract:
88
post-extract:

Return to bug 105638