aboutsummaryrefslogtreecommitdiff
path: root/polish/gnugadu2/Makefile
blob: f4850c7416628e8099051c399bba4f726bdce40a (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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# Created by: smyru@heron.pl
# $FreeBSD$

PORTNAME=	gnugadu2
PORTVERSION=	2.3.0
PORTREVISION=	11
CATEGORIES=	polish net-im
MASTER_SITES=	SF/ggadu/gg2/${PORTVERSION}
DISTNAME=	gg2-${PORTVERSION}

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Gadu-Gadu IM network client

LIB_DEPENDS=	gadu.3:${PORTSDIR}/polish/libgadu \
		audiofile.0:${PORTSDIR}/audio/libaudiofile

GNU_CONFIGURE=	yes
INSTALLS_ICONS=	yes
USE_BZIP2=	yes
USES=		gettext
USE_GMAKE=	yes
USE_GNOME=	gtk20
USE_LDCONFIG=	yes
USE_PERL5=	yes
USE_XORG=	x11 xaw ice xscrnsaver
WANT_GNOME=	yes
# there is a header conflict here, that breaks build
CONFLICTS=	qhacc-[0-9]*

CONFIGURE_ARGS=	--disable-esdtest \
		--with-external-libgadu \
		--with-static=no \
		--with-aaway \
		--with-external \
		--with-gghist \
		--with-gui \
		--with-ignore \
		--with-oss \
		--with-sms \
		--with-update \
		--without-gnutls \
		--without-perl \
		--without-remote

CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib

OPTIONS_DEFINE=	ARTS AUTODETECT DBUS DOCKAPP DOCKLET ESOUND \
		GTKSPELL JABBER TLEN XOSD
OPTIONS_DEFAULT=DOCKLET

AUTODETECT_DESC=Autodetect plugins
DOCKLET_DESC=	Enable fd.o docklet plugin
DOCKAPP_DESC=	Enable WindowMaker dockapp plugin
GTKSPELL_DESC=	Enable GTKSpell checker
TLEN_DESC=	Enable Tlen.pl network plugin
XOSD_DESC=	Enable On-Screen-Display messages

#.if ${${HAVE_GNOME:Mesound}!="" && empty(PORT_OPTIONS:MESOUND)

.include <bsd.port.pre.mk> # can't change this untile HAVE_GNOME has been fixed

.if ${PORT_OPTIONS:MAUTODETECT}
#detect arts
.if exists(${LOCALBASE}/lib/libartsc.so) && !${PORT_OPTIONS:MARTS}
PORT_OPTIONS+=	ARTS
.endif
#detect dbus - only works with old versions
.if exists(${LOCALBASE}/lib/libdbus-1.so)  && !${PORT_OPTIONS:MDBUS}
PORT_OPTIONS+=	DBUS
.endif
#detect esound
.if ${HAVE_GNOME:Mesound}!="" && !${PORT_OPTIONS:MESOUND}
PORT_OPTIONS+=	ESOUND
.endif
#detect gtkspell
.if exists(${LOCALBASE}/lib/libgtkspell.so) && !${PORT_OPTIONS:MGTKSPELL}
PORT_OPTIONS+=	GTKSPELL
.endif
.endif

.if ${PORT_OPTIONS:MTLEN}
LIB_DEPENDS+=	tlen.1:${PORTSDIR}/polish/libtlen
CONFIGURE_ARGS+=	--with-tlen
PLIST_SUB+=	TLEN:=""
.else
CONFIGURE_ARGS+=	--without-tlen
PLIST_SUB+=	TLEN:="@comment "
.endif

.if ${PORT_OPTIONS:MJABBER}
LIB_DEPENDS+=	loudmouth-1.0:${PORTSDIR}/net-im/loudmouth
CONFIGURE_ARGS+=	--with-jabber
PLIST_SUB+=	JABBER:=""
.else
CONFIGURE_ARGS+=	--without-jabber
PLIST_SUB+=	JABBER:="@comment "
.endif

.if !${PORT_OPTIONS:MDOCKLET}
CONFIGURE_ARGS+=	--without-docklet-system-tray
PLIST_SUB+=	DOCKLET:="@comment "
.else
CONFIGURE_ARGS+=	--with-docklet-system-tray
PLIST_SUB+=	DOCKLET:=""
.endif

.if ${PORT_OPTIONS:MDOCKAPP}
CONFIGURE_ARGS+=	--with-docklet_dockapp
PLIST_SUB+=	DOCKAPP:=""
.else
CONFIGURE_ARGS+=	--without-docklet_dockapp
PLIST_SUB+=	DOCKAPP:="@comment "
.endif

.if ${PORT_OPTIONS:MGTKSPELL}
LIB_DEPENDS+=	gtkspell.0:${PORTSDIR}/textproc/gtkspell
CONFIGURE_ARGS+=	--with-gtkspell
.else
CONFIGURE_ARGS+=	--without-gtkspell
.endif

.if ${PORT_OPTIONS:MDBUS}
LIB_DEPENDS+=	dbus-1.3:${PORTSDIR}/devel/dbus
CONFIGURE_ARGS+=	--with-dbus \
			--with-dbus-dir=${PREFIX}/share/dbus-1/services
PLIST_SUB+=	DBUS:=""
.else
CONFIGURE_ARGS+=	--without-dbus
PLIST_SUB+=	DBUS:="@comment "
.endif

.if ${PORT_OPTIONS:MESOUND}
PKGNAMESUFFIX=	-esound
USE_GNOME+=	esound
CONFIGURE_ARGS+=	--with-esd
PLIST_SUB+=	ESOUND:=""
.else
CONFIGURE_ARGS+=	--without-esd
PLIST_SUB+=	ESOUND:="@comment "
.endif

.if ${PORT_OPTIONS:MARTS}
LIB_DEPENDS+=	artsc.0:${PORTSDIR}/audio/arts
CONFIGURE_ARGS+=	--with-arts
PLIST_SUB+=	ARTS:=""
.else
CONFIGURE_ARGS+=	--without-arts
PLIST_SUB+=	ARTS:="@comment "
.endif

.if ${PORT_OPTIONS:MXOSD}
LIB_DEPENDS+=	xosd.4:${PORTSDIR}/misc/xosd
CONFIGURE_ARGS+=	--with-xosd
PLIST_SUB+=	XOSD:=""
.else
CONFIGURE_ARGS+=	--without-xosd
PLIST_SUB+=	XOSD:="@comment "
.endif

post-patch:
	@${REINPLACE_CMD} -e 's,=.*},=${PREFIX},' ${WRKSRC}/src/plugins/dbus/org.freedesktop.im.GG.service
	@${REINPLACE_CMD} -e 's, -ldl,, ; s,(libdir)/pkgconfig,(prefix)/libdata/pkgconfig,' ${WRKSRC}/lib/Makefile.in
	@${REINPLACE_CMD} -e 's,(datadir)/pixmaps,(datadir)/icons/hicolor/48x48/apps,' ${WRKSRC}/pixmaps/Makefile.in
	@${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' ${WRKSRC}/src/plugins/GUI/gtkimhtml.c

post-install:
	@${MKDIR} ${PREFIX}/share/applications
	${INSTALL_DATA} ${WRKSRC}/gg2.desktop ${PREFIX}/share/applications/

# vim: set ts=8 sw=8:
.include <bsd.port.post.mk>