1998-11-19 15:08:31 +00:00
|
|
|
# New ports collection makefile for: xchat
|
|
|
|
# Date created: 17 Nov 1998
|
1999-08-12 07:55:42 +00:00
|
|
|
# Whom: Jim Mock <jim@FreeBSD.org>
|
1998-11-19 09:27:59 +00:00
|
|
|
#
|
1999-08-25 06:16:32 +00:00
|
|
|
# $FreeBSD$
|
1998-11-19 09:27:59 +00:00
|
|
|
#
|
|
|
|
|
2000-11-16 06:30:14 +00:00
|
|
|
PORTNAME= xchat
|
2003-01-19 00:09:27 +00:00
|
|
|
PORTVERSION= 1.8.11
|
2004-03-31 14:27:43 +00:00
|
|
|
PORTREVISION= 3
|
2001-09-04 19:38:29 +00:00
|
|
|
CATEGORIES+= irc gnome ipv6
|
2002-01-18 21:43:31 +00:00
|
|
|
MASTER_SITES= http://xchat.org/files/source/1.8/ \
|
|
|
|
http://xchat.linuxpower.org/files/source/1.8/
|
1998-11-19 09:27:59 +00:00
|
|
|
|
2003-12-15 01:17:29 +00:00
|
|
|
MAINTAINER?= ports@FreeBSD.org
|
2003-03-07 06:14:21 +00:00
|
|
|
COMMENT= An X11 IRC client using the GTK+ toolkit, and optionally, GNOME
|
2001-09-04 19:38:29 +00:00
|
|
|
|
2000-11-06 19:39:43 +00:00
|
|
|
# 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.
|
1998-11-19 09:27:59 +00:00
|
|
|
|
2000-11-16 06:30:14 +00:00
|
|
|
USE_X_PREFIX= yes
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_GMAKE= yes
|
2004-03-30 19:20:22 +00:00
|
|
|
USE_ICONV= yes
|
2000-11-16 06:30:14 +00:00
|
|
|
USE_PERL5= yes
|
2002-09-08 03:47:52 +00:00
|
|
|
USE_GNOME= gtk12
|
2000-11-16 06:30:14 +00:00
|
|
|
WANT_GNOME= yes
|
|
|
|
GNU_CONFIGURE= yes
|
2000-11-06 19:39:43 +00:00
|
|
|
# Assign with `+=' for slave ports
|
2001-09-04 19:38:29 +00:00
|
|
|
CONFIGURE_ENV+= CPPFLAGS="-I${LOCALBASE}/include" \
|
2002-04-12 17:10:20 +00:00
|
|
|
LIBS="-L${LOCALBASE}/lib -lintl -liconv"
|
2002-06-30 22:28:11 +00:00
|
|
|
CONFIGURE_ARGS+= --without-included-gettext \
|
2001-09-04 19:38:29 +00:00
|
|
|
--enable-nls \
|
2001-09-05 20:12:17 +00:00
|
|
|
--enable-ipv6 \
|
2001-11-03 11:51:15 +00:00
|
|
|
--datadir="${PREFIX}/share" \
|
|
|
|
--enable-perl
|
1999-07-21 05:24:44 +00:00
|
|
|
|
2000-10-05 07:22:56 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
2000-04-17 00:18:05 +00:00
|
|
|
.if defined(WITH_SOCKS)
|
2000-11-06 19:39:43 +00:00
|
|
|
# Assign with `+=' for slave ports
|
2000-11-16 06:30:14 +00:00
|
|
|
BUILD_DEPENDS+= ${LOCALBASE}/lib/libsocks5.a:${PORTSDIR}/net/socks5
|
|
|
|
CONFIGURE_ARGS+= --enable-socks
|
2000-04-14 18:18:37 +00:00
|
|
|
.endif
|
|
|
|
|
2000-11-26 05:08:19 +00:00
|
|
|
.if defined(WITH_SSL)
|
|
|
|
USE_OPENSSL= YES
|
|
|
|
CONFIGURE_ARGS+= --enable-openssl
|
|
|
|
.endif
|
|
|
|
|
2001-11-28 07:50:03 +00:00
|
|
|
.if defined(WITH_TRANSPARENCY)
|
|
|
|
BUILD_DEPENDS+= ${X11BASE}/bin/gdk-pixbuf-config:${PORTSDIR}/graphics/gdk-pixbuf
|
|
|
|
CONFIGURE_ARGS+= --enable-gdk-pixbuf
|
|
|
|
.endif
|
|
|
|
|
2002-08-31 00:42:23 +00:00
|
|
|
.if ${HAVE_GNOME:Mimlib}!=""
|
|
|
|
USE_GNOME= imlib
|
2001-10-09 21:11:40 +00:00
|
|
|
CONFIGURE_ARGS+= --enable-gnome --enable-panel --enable-gdk-pixbuf \
|
|
|
|
--enable-zvt
|
2002-05-26 22:47:30 +00:00
|
|
|
MAKE_ARGS= icondir="${PREFIX}/share/gnome/pixmaps" \
|
|
|
|
utildir="${PREFIX}/share/gnome/apps/Internet"
|
1999-07-21 05:24:44 +00:00
|
|
|
.else
|
2001-11-28 07:50:03 +00:00
|
|
|
CONFIGURE_ARGS+= --disable-gnome --disable-zvt
|
1999-07-21 05:24:44 +00:00
|
|
|
.endif
|
|
|
|
|
2002-06-30 22:28:11 +00:00
|
|
|
.if defined(WITH_PYTHON)
|
2004-04-10 17:26:55 +00:00
|
|
|
USE_PYTHON= yes
|
2002-06-30 22:28:11 +00:00
|
|
|
CONFIGURE_ARGS+= --enable-python
|
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+= --disable-python
|
|
|
|
.endif
|
|
|
|
|
2000-11-06 19:39:43 +00:00
|
|
|
post-patch:
|
2001-09-04 19:38:29 +00:00
|
|
|
@${PERL} -pi \
|
|
|
|
-e 's|-lpthread|${PTHREAD_LIBS}|g;' \
|
|
|
|
${WRKSRC}/configure
|
2000-01-20 02:23:12 +00:00
|
|
|
|
1999-05-09 16:57:32 +00:00
|
|
|
post-install:
|
|
|
|
.if !defined(NOPORTDOCS)
|
2000-10-05 07:22:56 +00:00
|
|
|
@${ECHO_MSG} "===> Installing xchat docs in ${PREFIX}/share/doc/xchat"
|
1999-08-22 19:01:07 +00:00
|
|
|
@${MKDIR} ${PREFIX}/share/doc/xchat && ${CHMOD} a+rx ${PREFIX}/share/doc/xchat
|
2000-10-03 05:48:54 +00:00
|
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.* ${PREFIX}/share/doc/xchat
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/xchat
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/xchat
|
1999-05-09 16:57:32 +00:00
|
|
|
.endif
|
1998-11-19 09:27:59 +00:00
|
|
|
|
2000-10-05 07:22:56 +00:00
|
|
|
.include <bsd.port.post.mk>
|