summaryrefslogtreecommitdiff
path: root/irc/xchat1/Makefile
blob: 02ffae25a117efcf8bcf89a9d7531091eb09d115 (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
# New ports collection makefile for:	xchat
# Date created:			17 Nov 1998
# Whom:				Jim Mock <jim@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=		xchat
PORTVERSION=		1.8.7
CATEGORIES+=		irc gnome ipv6
MASTER_SITES=		http://xchat.org/files/source/1.8/ \
			http://xchat.linuxpower.org/files/source/1.8/

MAINTAINER?=		jim@FreeBSD.org

BUILD_DEPENDS=		msgfmt-new:${PORTSDIR}/devel/gettext-devel
LIB_DEPENDS=		giconv.2:${PORTSDIR}/converters/libiconv

# This port has a slave port japanese/xchat.  Do not carelessly overwrite
# the variables or the targets defined in it.  When you need to, please
# contact its maintainer.

USE_X_PREFIX=		yes
USE_BZIP2=		yes
USE_GMAKE=		yes
USE_PERL5=		yes
USE_IMLIB=		yes
WANT_GNOME=		yes
GNU_CONFIGURE=		yes
# Assign with `+=' for slave ports
CONFIGURE_ENV+=		CPPFLAGS="-I${LOCALBASE}/include" \
			LIBS="-L${LOCALBASE}/lib -lintl -lgiconv" \
			MSGFMT=${LOCALBASE}/bin/msgfmt-new
CONFIGURE_ARGS+=	--disable-python \
			--without-included-gettext \
			--enable-nls \
			--enable-ipv6 \
			--datadir="${PREFIX}/share" \
			--enable-perl

.include <bsd.port.pre.mk>

.if defined(WITH_SOCKS)
# Assign with `+=' for slave ports
BUILD_DEPENDS+=		${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
CONFIGURE_ARGS+=	--enable-socks
.endif

.if defined(WITH_SSL)
USE_OPENSSL=		YES
CONFIGURE_ARGS+=	--enable-openssl
.endif

.if defined(WITH_TRANSPARENCY)
BUILD_DEPENDS+=		${X11BASE}/bin/gdk-pixbuf-config:${PORTSDIR}/graphics/gdk-pixbuf
CONFIGURE_ARGS+=	--enable-gdk-pixbuf
.endif

.if defined(HAVE_GNOME)
USE_GNOME=		yes
CONFIGURE_ARGS+=	--enable-gnome --enable-panel --enable-gdk-pixbuf \
			--enable-zvt
MAKE_ARGS=		icondir="${PREFIX}/share/gnome/pixmaps"
.else
CONFIGURE_ARGS+=	--disable-gnome --disable-zvt
.endif

post-patch:
	@${PERL} -pi \
		-e 's|-lpthread|${PTHREAD_LIBS}|g;' \
		-e 's|iconv|giconv|;' \
		${WRKSRC}/configure
	@${PERL} -pi -e 's|iconv\.h|giconv.h|;' \
		${WRKSRC}/src/common/jcode.c

post-install:
.if !defined(NOPORTDOCS)
	@${ECHO_MSG} "===>   Installing xchat docs in ${PREFIX}/share/doc/xchat"
	@${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat
	${INSTALL_DATA} ${WRKSRC}/doc/*.* ${PREFIX}/share/doc/xchat
	${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xchat
	${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/xchat
.endif

.include <bsd.port.post.mk>