diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-05-11 19:03:42 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2005-05-11 19:03:42 +0000 |
commit | 6d2d615acf6429270db752171d20a2c566100987 (patch) | |
tree | deb274a3e53474504b7b1e927dc1ac3b4bf9f68f /net-im/gaim/Makefile | |
parent | Document mozilla -- code execution via javascript: IconURL vulnerability. (diff) |
* Update to 1.3.0 which fixes security and other bugs. See
http://gaim.sourceforge.net/ChangeLog for the list of all the changes.
* Add support for enabling better Chinese (well, CJK in general) support [1]
PR: 80801 [1]
Submitted by: chinsan <chinsan@mail2000.com.tw> [1]
Security: See http://gaim.sourceforge.net/security/index.php for the
security issues fixed in this release.
Diffstat (limited to 'net-im/gaim/Makefile')
-rw-r--r-- | net-im/gaim/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/net-im/gaim/Makefile b/net-im/gaim/Makefile index 2047cadf1baf..7c3ac27f39a1 100644 --- a/net-im/gaim/Makefile +++ b/net-im/gaim/Makefile @@ -6,7 +6,7 @@ # PORTNAME= gaim -PORTVERSION= 1.2.1 +PORTVERSION= 1.3.0 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -33,7 +33,8 @@ CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_C MAN1= gaim.1 gaim-remote.1 -OPTIONS= SILC "Secure Internet Live Conferencing support" off \ +OPTIONS= BIG5 "With Big5 Chinese input fix" off \ + SILC "Secure Internet Live Conferencing support" off \ GTKSPELL "spell checking support" on \ AUDIO "audio support" on \ GNUTLS "GNUTLS encryption support" off \ @@ -128,5 +129,8 @@ post-patch: -e 's|TCL_VERSION found but 8.3 required|TCL_VERSION found but ${TCLTK_VER} required|g' \ -e 's|TCL_MINOR_VERSION" -ne 3|TCL_MINOR_VERSION" -ne ${TCLTK_VER:E}|' \ ${WRKSRC}/configure +.if defined(WITH_BIG5) +EXTRA_PATCHES+= ${FILESDIR}/extra-patch-src_gtkconv.c +.endif .include <bsd.port.post.mk> |