aboutsummaryrefslogtreecommitdiffstats
path: root/net-im/mcabber/Makefile
blob: 8073e9aef12766e11d0b6332db2281eb6344a706 (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
# Created by: vsevolod
# $FreeBSD$

PORTNAME=   mcabber
PORTVERSION=    0.10.1
PORTREVISION=   3
CATEGORIES= net-im
MASTER_SITES=   http://www.lilotux.net/~mikael/mcabber/files/ CENKES

MAINTAINER= dhn@FreeBSD.org
COMMENT=    Small Jabber console client

LIB_DEPENDS=    loudmouth:${PORTSDIR}/net-im/loudmouth

LICENSE=    GPLv2

USE_BZIP2=  yes
GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --enable-sigwinch --libdir=${PREFIX}/lib
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib
USES=       pkgconfig
USE_ICONV=  yes
USE_GETTEXT=    yes
USE_LDCONFIG=   yes
USE_NCURSES=    yes
USE_GNOME=  glib20

MAN1=       mcabber.1

OPTIONS_DEFINE= GPGME OTR
OPTIONS_RADIO=  SPELL
OPTIONS_RADIO_SPELL=    ASPELL ENCHANT
GPGME_DESC= Use security/gpgme for PGP support
OTR_DESC=   Off-the-record messaging support
ENCHANT_DESC=   Spell checking via enchant

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MGPGME}
LIB_DEPENDS+=   gpgme.19:${PORTSDIR}/security/gpgme
CONFIGURE_ARGS+=--enable-gpgme
.else
CONFIGURE_ARGS+=--disable-gpgme
.endif

.if ${PORT_OPTIONS:MASPELL}
LIB_DEPENDS+=   aspell.16:${PORTSDIR}/textproc/aspell
CONFIGURE_ARGS+=--enable-aspell
.else
CONFIGURE_ARGS+=--disable-aspell
.endif

.if ${PORT_OPTIONS:MENCHANT}
LIB_DEPENDS+=   enchant.1:${PORTSDIR}/textproc/enchant
CONFIGURE_ARGS+=--enable-enchant
.else
CONFIGURE_ARGS+=--disable-enchant
.endif

.if ${PORT_OPTIONS:MOTR}
LIB_DEPENDS+=   otr.4:${PORTSDIR}/security/libotr3 \
        gcrypt.18:${PORTSDIR}/security/libgcrypt
CONFIGURE_ARGS+=--enable-otr
PLIST_SUB+= OTR=""
.else
CONFIGURE_ARGS+=--disable-otr
PLIST_SUB+= OTR="@comment "
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|$$"$${datadir}"|"$${datadir}"|;s|-O2||'\
        -e 's|$$"$${libdir}|"$${libdir}|g' ${WRKSRC}/configure
    @${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|${PREFIX}/libdata/pkgconfig|g' \
        ${WRKSRC}/Makefile.*

post-install:
    @${INSTALL} -d ${PREFIX}/share/applications/ ${EXAMPLESDIR}/
    @${INSTALL} ${WRKSRC}/${PORTNAME}.desktop ${PREFIX}/share/applications/
    @${CP} -R ${WRKSRC}/contrib ${DATADIR}/
    ${INSTALL_DATA} ${WRKSRC}/mcabberrc.example ${EXAMPLESDIR}/mcabberrc

.include <bsd.port.mk>