aboutsummaryrefslogtreecommitdiffstats
path: root/irc/weechat-devel/Makefile
blob: cfddb037c239581fdb062bccf303de47a23ba92f (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
# New ports collection makefile for:    weechat
# Date created:             2003-03-07
# Whom:                 clement
#
# $FreeBSD$
#

PORTNAME=   weechat
PORTVERSION=    0.2.6.2
CATEGORIES= irc
MASTER_SITES=   http://flashcode.free.fr/flashtux/weechat/ \
        http://weechat.flashtux.org/download/

MAINTAINER= miwi@FreeBSD.org
COMMENT=    A lightweight and user friendly ncurse based IRC client

USE_BZIP2=  yes
USE_ICONV=  yes
USE_AUTOTOOLS=  autoconf:262
USE_LDCONFIG=   yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --disable-lua
USE_PYTHON= yes
USE_RUBY=   yes
USE_GETTEXT=    yes

MAN1=   weechat-curses.1

OPTIONS=    RUBY "Ruby scripting support." off \
        PYTHON "Python scripting support." off \
        PERL "Perl scripting support." off \
        CHARSET "Charset support." on \
        DEBUG "Debugging." off \
        ASPELL "Spell checking." off \
        GNUTLS "GNU TLS." off \
        NLS "NLS support" on

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_DEBUG)
CONFIGURE_ARGS+=    --with-debug=2
.else
CONFIGURE_ARGS+=    --with-debug=0
.endif

.if !defined(WITHOUT_CHARSET)
CONFIGURE_ARGS+=    --disable-charset
PLIST_SUB+= CHARSET="@comment"
.else
PLIST_SUB+= CHARSET=""
.endif

.if !defined(WITHOUT_NLS)
CONFIGURE_ARGS+=    --disable-nls
PLIST_SUB+= NLS="@comment "
.else
PLIST_SUB+= NLS=""
.endif

.if !defined(WITHOUT_ASPELL)
CONFIGURE_ARGS+=    --enable-aspell
BUILD_DEPENDS+= aspell:${PORTSDIR}/textproc/aspell
PLIST_SUB+= ASPELL=""
.else
CONFIGURE_ARGS+=    --disable-aspell
PLIST_SUB+= ASPELL="@comment "
.endif

.if !defined(WITHOUT_PYTHON)
CONFIGURE_ARGS+=    --enable-python
PLIST_SUB+= PYTHON=""
.else
CONFIGURE_ARGS+=    --disable-python
PLIST_SUB+= PYTHON="@comment "
.endif

.if !defined(WITHOUT_RUBY)
CONFIGURE_ARGS+=    --enable-ruby
PLIST_SUB+= RUBY=""
.else
CONFIGURE_ARGS+=    --disable-ruby
PLIST_SUB+= RUBY="@comment "
.endif

.if !defined(WITHOUT_GNUTLS)
CONFIGURE_ARGS+=    --enable-gnutls
LIB_DEPENDS+=   gnutls.26:${PORTSDIR}/security/gnutls
.else
CONFIGURE_ARGS+=    --disable-gnutls
.endif

.if !defined(WITHOUT_PERL)
CONFIGURE_ARGS+=    --enable-perl
USE_PERL5=  yes
PLIST_SUB+= PERL=""
.else
CONFIGURE_ARGS+=    --disable-perl
PLIST_SUB+= PERL="@comment "
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|2.61|2.62|g' ${WRKSRC}/aclocal.m4

.include <bsd.port.post.mk>