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

Collapse All | Expand All

(-)bitlbee/Makefile (-1 / +42 lines)
Lines 30-36 Link Here
30
OPTIONS=	MSN "Enable MSN protocol support" On \
30
OPTIONS=	MSN "Enable MSN protocol support" On \
31
		DEBUG "Create debuggable binary" Off \
31
		DEBUG "Create debuggable binary" Off \
32
		OPENSSL "Use openssl rather than gnutls" Off \
32
		OPENSSL "Use openssl rather than gnutls" Off \
33
		IPV6 "Compile IPV6 support" On
33
		IPV6 "Compile IPV6 support" On \
34
		OTR "Enable OTR support" Off \
35
		XMPP "Enable XMPP protocol support" On \
36
		OSCAR "Enable OSCAR (ICQ,AIM) protocol support" On \
37
		YAHOO "Enable Yahoo protocol support" On
34
38
35
CONFIGURE_ARGS=	--config=/var/db/bitlbee --strip=0
39
CONFIGURE_ARGS=	--config=/var/db/bitlbee --strip=0
36
40
Lines 60-65 Link Here
60
CONFIGURE_ARGS+=--msn=0 --ssl=bogus
64
CONFIGURE_ARGS+=--msn=0 --ssl=bogus
61
.endif
65
.endif
62
66
67
.if !defined(WITHOUT_XMPP)
68
CONFIGURE_ARGS+=--jabber=1
69
.else
70
CONFIGURE_ARGS+=--jabber=0
71
.endif
72
73
.if !defined(WITHOUT_OSCAR)
74
CONFIGURE_ARGS+=--oscar=1
75
.else
76
CONFIGURE_ARGS+=--oscar=0
77
.endif
78
79
.if !defined(WITHOUT_YAHOO)
80
CONFIGURE_ARGS+=--yahoo=1
81
.else
82
CONFIGURE_ARGS+=--yahoo=0
83
.endif
84
63
.if defined(WITH_OPENSSL)
85
.if defined(WITH_OPENSSL)
64
CONFIGURE_ARGS+=--ssl=openssl
86
CONFIGURE_ARGS+=--ssl=openssl
65
.else
87
.else
Lines 75-80 Link Here
75
CONFIGURE_ARGS+=--ipv6=0
97
CONFIGURE_ARGS+=--ipv6=0
76
.endif
98
.endif
77
99
100
.if defined(WITH_OTR)
101
PATCHFILES+=	bitlbee-otr-1.2.1.diff
102
PATCH_SITES=	http://wahjava.googlepages.com/
103
PATCH_DIST_STRIP=	-p1
104
PATCH=	${LOCALBASE}/bin/gpatch
105
BUILD_DEPENDS+=	${LOCALBASE}/bin/gpatch:${PORTSDIR}/devel/patch
106
LIB_DEPENDS+=	otr.4:${PORTSDIR}/security/libotr
107
CONFIGURE_ARGS+=--otr=1
108
.if !defined(NOPORTDOCS)
109
BUILD_DEPENDS+=	${LOCALBASE}/bin/xmlto:${PORTSDIR}/textproc/xmlto \
110
	${LOCALBASE}/bin/xsltproc:${PORTSDIR}/textproc/libxslt
111
post-build:
112
	${MKDIR} -p ${WRKSRC}/.bzr
113
	${GMAKE} -C ${WRKSRC}/doc/user-guide
114
.endif
115
.else
116
PLIST_SUB+=	OTR="@comment "
117
.endif
118
78
post-patch:
119
post-patch:
79
	@${REINPLACE_CMD} \
120
	@${REINPLACE_CMD} \
80
		-e "s|^EFLAGS=|EFLAGS=${LDFLAGS}|" \
121
		-e "s|^EFLAGS=|EFLAGS=${LDFLAGS}|" \
(-)bitlbee/distinfo (+3 lines)
Lines 1-3 Link Here
1
MD5 (bitlbee-1.2.1.tar.gz) = ca00f65aea89903ba78321eac00f7849
1
MD5 (bitlbee-1.2.1.tar.gz) = ca00f65aea89903ba78321eac00f7849
2
SHA256 (bitlbee-1.2.1.tar.gz) = 4654e8824eea2ba787b4751782ee3ca704b756d3c4f623cda409cde212198d06
2
SHA256 (bitlbee-1.2.1.tar.gz) = 4654e8824eea2ba787b4751782ee3ca704b756d3c4f623cda409cde212198d06
3
SIZE (bitlbee-1.2.1.tar.gz) = 471454
3
SIZE (bitlbee-1.2.1.tar.gz) = 471454
4
MD5 (bitlbee-otr-1.2.1.diff) = b4f235b6d3e9b474b76249ace88f9d36
5
SHA256 (bitlbee-otr-1.2.1.diff) = c162518d4e0b766142337ac282c6ddfece184f42628e03e68fe5d48aa846f835
6
SIZE (bitlbee-otr-1.2.1.diff) = 287308

Return to bug 126208