blob: e01c151e6117ede3f56bde20403dcfa6d10c50c1 (
plain) (
blame)
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
|
# New ports collection makefile for: evangeline
# Date created: 1 Mar 2005
# Whom: "Edini" <ports@edini.net>
#
# $FreeBSD$
#
PORTNAME= evangeline
PORTVERSION= 1.1.2
PORTREVISION= 1
CATEGORIES= irc tcl84
MASTER_SITES= http://www.averse.piasta.pl/_data/evangeline/${PORTVERSION}/
MAINTAINER= ports@FreeBSD.org
COMMENT= IRC Bot based on Eggdrop
LIB_DEPENDS= tcl84.1:${PORTSDIR}/lang/tcl84
WRKSRC= ${WRKDIR}/${PORTNAME}
USE_GMAKE= yes
GNU_CONFIGURE= yes
IS_INTERACTIVE= yes
OPTIONS= IPV6 "Enable IPv6 support" off \
CRYPT "Enable Encryption" on
.include <bsd.port.pre.mk>
.if defined(WITH_IPV6)
CONFIGURE_ARGS+= --enable-ipv6
.else
CONFIGURE_ARGS+= --disable-ipv6
.endif
.if defined(WITHOUT_CRYPT)
CONFIGURE_ARGS+= --disable-crypt
.else
CONFIGURE_ARGS+= --enable-crypt
.endif
PLIST_FILES= bin/evangeline
.include <bsd.port.post.mk>
|