pkgsrc/chat/xchat2/Makefile
xtraeme 0733dedcb8 Updated to 2.0.4
Changes:

 - Updated translations (lt, sv, zh_CN).
 - Fixed crash on tinted transparency (xc203-fixtint.diff).
 - Fixed incorrect dcc cps calculation (xc203-fix-cps.diff).
 - Allow fullpath and relative filenames for Text Events sound files
   (Anthony Dragunov).
 - Added /GUI command (mainly for use by scripts).
 - Solaris build fixes for ipv6.
 - Added -n, --no-plugins command-line arg.
 - Added a feature to change the color of away users.
 - Moved default dcc and sound dirs inside ~/.xchat2/ (SilvereX).
 - Fixed bug [753742] When server tab and query had the same name,
   private messages could go to the wrong tab.
 - Support others users too, when expanding ~ in filenames (Neox).
   [767514].
 - Underline "ipnumber:port" style urls too (Alex & dobler).
 - Added support for ircu numerics 330 and 338 (phaseburn).
 - C89 fixes, should now compile with HP UX and Sun C Compilers
   (Albert Chin). [777106].
 - Smaller bug fixes: [773245] [779166].
 - Close tabs on shift-leftclick (Jay Cornwall).

I'm actually the maintainer.
2003-08-30 16:03:18 +00:00

55 lines
1.3 KiB
Makefile

# $NetBSD: Makefile,v 1.11 2003/08/30 16:03:18 xtraeme Exp $
#
DISTNAME= xchat-2.0.4
CATEGORIES= chat gnome
MASTER_SITES= http://www.xchat.org/files/source/2.0/
EXTRACT_SUFX= .tar.bz2
MAINTAINER= xtraeme@NetBSD.org
HOMEPAGE= http://www.xchat.org/
COMMENT= X11 (X Window System) IRC client, using the GTK2 toolkit
BUILD_USES_MSGFMT= YES
DEPENDS= gnome2-dirs>=1.0:../../misc/gnome2-dirs
GNU_CONFIGURE= YES
USE_BUILDLINK2= YES
USE_LIBTOOL= YES
USE_GMAKE= YES
USE_PKGLOCALEDIR= YES
USE_X11= YES
LIBTOOL_OVERRIDE= ${WRKSRC}/libtool
CONFIGURE_ARGS+= --enable-textfe
CONFIGURE_ARGS+= --enable-tcl=no
CONFIGURE_ARGS+= --disable-perl
CONFIGURE_ARGS+= --disable-python
.include "../../mk/bsd.prefs.mk"
BUILD_DEFS+= USE_INET6 USE_SOCKS XCHAT_USE_SSL
# IPv6 support
.if defined(USE_INET6) && !empty(USE_INET6:M[Yy][Ee][Ss])
CONFIGURE_ARGS+= --enable-ipv6
.endif
# Socks support
.if defined(USE_SOCKS) && !empty(USE_SOCKS:M[Yy][Ee][Ss])
CONFIGURE_ARGS+= --enable-socks
.endif
# SSL support
.if defined(XCHAT_USE_SSL) && !empty(XCHAT_USE_SSL:M[Yy][Ee][Ss])
. include "../../security/openssl/buildlink2.mk"
CONFIGURE_ARGS+= --enable-openssl=${SSLBASE}
.endif
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/lib/xchat/plugins
.include "../../devel/pkgconfig/buildlink2.mk"
.include "../../x11/gtk2/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"