blob: c40d9d15d7592382bac76e504d06d32407831043 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
# New ports collection makefile for: irssi
# Date created: 14 Apr 1999
# Whom: Jim Mock <jim@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= irssi
PORTVERSION= 0.8.8
CATEGORIES= irc
MASTER_SITES= http://irssi.org/files/
MAINTAINER= vanilla@FreeBSD.org
COMMENT= A modular IRC client with many features
USE_BZIP2= yes
GNU_CONFIGURE= yes
MAN1= irssi.1
.include <bsd.port.pre.mk>
# Set option defaults.
.if ! defined(WITH_GLIB)
.if exists(${LOCALBASE}/include/glib-2.0/glib.h)
WITH_GLIB= 2
.else
WITH_GLIB= 1
.endif
.endif
.if ! defined(WITH_PERL)
WITH_PERL= no
.endif
.if ! defined(WITH_PROXY)
WITH_PROXY= no
.endif
.if ! defined(WITH_SOCKS)
WITH_SOCKS= no
.endif
.if ! defined(WITH_IPV6)
WITH_IPV6= yes
.endif
.if ! defined(WITH_SSL)
WITH_SSL= yes
.endif
# Process options.
.if ${WITH_GLIB} == "2"
USE_GNOME= glib20
LIB_DEPENDS+= gc.1:${PORTSDIR}/deve/boehm-gc
CONFIGURE_ENV+= CPPFLAGS=-I${PREFIX}/include
CONFIGURE_ARGS+= --with-gc
.elif ${WITH_GLIB} == "1"
CONFIGURE_ARGS+= --with-glib1
USE_GNOME= glib12
.else
.error WITH_GLIB must be set to "1" or "2".
.endif
.if ${WITH_PERL:L} == "yes"
USE_PERL5= yes
CONFIGURE_ARGS+= --with-perl-lib=site
PLIST_SUB+= WITH_PERL=""
.else
CONFIGURE_ARGS+= --without-perl
PLIST_SUB+= WITH_PERL="@comment "
.endif
.if ${WITH_PROXY:L} == "yes"
CONFIGURE_ARGS+= --with-proxy
PLIST_SUB+= WITH_PROXY=""
.else
PLIST_SUB+= WITH_PROXY="@comment "
.endif
.if ${WITH_SOCKS:L} == "yes"
CONFIGURE_ARGS+= --with-socks
.endif
.if ${WITH_IPV6:L} == "yes"
.if ${OSVERSION} >= 400014
CONFIGURE_ARGS+= --enable-ipv6
CATEGORIES+= ipv6
.else
.error This version of FreeBSD does not support IPv6. Please use WITH_IPV6=no.
.endif
.endif
.if ${WITH_SSL:L} == "yes"
USE_OPENSSL= yes
.else
CONFIGURE_ARGS+= --disable-ssl
.endif
pre-everything::
@${ECHO} ""
@${ECHO} "You may use the following build options:"
@${ECHO} ""
@${ECHO} " WITH_GLIB=1|2 Select a GLib version to use [auto]"
@${ECHO} " WITH_PERL=yes|no Enable Perl support [no]"
@${ECHO} " WITH_PROXY=yes|no Enable irssi-proxy [no]"
@${ECHO} " WITH_SOCKS=yes|no Enable Socks support [no]"
@${ECHO} " WITH_IPV6=yes|no Enable IPv6 support [yes]"
@${ECHO} " WITH_SSL=yes|no Enable SSL support [yes]"
@${ECHO} ""
pre-configure:
@cd ${WRKSRC} && ${MV} irssi.conf irssi.conf.sample
post-install:
@if [ ! -f ${LOCALBASE}/etc/irssi.conf ]; then \
${ECHO} "Installing default configuration file."; \
${INSTALL_DATA} ${WRKSRC}/irssi.conf.sample ${LOCALBASE}/etc/irssi.conf ; \
fi
.include <bsd.port.post.mk>
|