Sat Oct 24 15:51:25 2009 UTC ()
if neither gtkspell nor libsexy was selected, then --enable-spell=none.


(tnn)
diff -r1.63 -r1.64 pkgsrc/chat/xchat/Makefile
diff -r1.13 -r1.14 pkgsrc/chat/xchat/options.mk

cvs diff -r1.63 -r1.64 pkgsrc/chat/xchat/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/chat/xchat/Attic/Makefile 2009/08/26 19:57:17 1.63
+++ pkgsrc/chat/xchat/Attic/Makefile 2009/10/24 15:51:25 1.64
@@ -1,21 +1,21 @@ @@ -1,21 +1,21 @@
1# $NetBSD: Makefile,v 1.63 2009/08/26 19:57:17 sno Exp $ 1# $NetBSD: Makefile,v 1.64 2009/10/24 15:51:25 tnn Exp $
2 2
3PKG_DESTDIR_SUPPORT= user-destdir 3PKG_DESTDIR_SUPPORT= user-destdir
4 4
5.include "Makefile.common" 5.include "Makefile.common"
6 6
7PKGNAME= ${DISTNAME}pl1 7PKGNAME= ${DISTNAME}pl1
8PKGREVISION= 1 8PKGREVISION= 2
9OWNER= tron@NetBSD.org 9OWNER= tron@NetBSD.org
10COMMENT= X11 (X Window System) IRC client, using the GTK2 toolkit 10COMMENT= X11 (X Window System) IRC client, using the GTK2 toolkit
11 11
12CONFLICTS= xchat-gnome-[0-9]* 12CONFLICTS= xchat-gnome-[0-9]*
13 13
14USE_TOOLS+= msgfmt 14USE_TOOLS+= msgfmt
15USE_PKGLOCALEDIR= YES 15USE_PKGLOCALEDIR= YES
16GCONF_SCHEMAS= apps_xchat_url_handler.schemas 16GCONF_SCHEMAS= apps_xchat_url_handler.schemas
17 17
18CONFIGURE_ARGS+= --enable-tcl=no 18CONFIGURE_ARGS+= --enable-tcl=no
19CONFIGURE_ARGS+= --disable-perl 19CONFIGURE_ARGS+= --disable-perl
20CONFIGURE_ARGS+= --disable-python 20CONFIGURE_ARGS+= --disable-python
21 21

cvs diff -r1.13 -r1.14 pkgsrc/chat/xchat/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/chat/xchat/Attic/options.mk 2009/07/22 09:01:21 1.13
+++ pkgsrc/chat/xchat/Attic/options.mk 2009/10/24 15:51:25 1.14
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: options.mk,v 1.13 2009/07/22 09:01:21 wiz Exp $ 1# $NetBSD: options.mk,v 1.14 2009/10/24 15:51:25 tnn Exp $
2 2
3.include "../../mk/bsd.prefs.mk" 3.include "../../mk/bsd.prefs.mk"
4 4
5 5
6PKG_OPTIONS_VAR= PKG_OPTIONS.xchat 6PKG_OPTIONS_VAR= PKG_OPTIONS.xchat
7PKG_SUPPORTED_OPTIONS= inet6 ssl socks5 mitshm gnome 7PKG_SUPPORTED_OPTIONS= inet6 ssl socks5 mitshm gnome
8PKG_OPTIONS_GROUP.spell= libsexy gtkspell 8PKG_OPTIONS_GROUP.spell= libsexy gtkspell
9PKG_OPTIONS_OPTIONAL_GROUPS= spell 9PKG_OPTIONS_OPTIONAL_GROUPS= spell
10PKG_SUGGESTED_OPTIONS= inet6 ssl 10PKG_SUGGESTED_OPTIONS= inet6 ssl
11 11
12.include "../../mk/bsd.options.mk" 12.include "../../mk/bsd.options.mk"
13 13
14PLIST_VARS+= dbus 14PLIST_VARS+= dbus
@@ -63,14 +63,16 @@ SUBST_FILES.gconf+= src/common/dbus/Make @@ -63,14 +63,16 @@ SUBST_FILES.gconf+= src/common/dbus/Make
63# We set this to ${FALSE} to avoid detection. 63# We set this to ${FALSE} to avoid detection.
64CONFIGURE_ARGS+= --disable-dbus 64CONFIGURE_ARGS+= --disable-dbus
65.endif 65.endif
66 66
67### 67###
68### Support for spell checking 68### Support for spell checking
69### 69###
70.if !empty(PKG_OPTIONS:Mgtkspell) 70.if !empty(PKG_OPTIONS:Mgtkspell)
71CONFIGURE_ARGS+= --enable-spell=gtkspell 71CONFIGURE_ARGS+= --enable-spell=gtkspell
72. include "../../textproc/gtkspell/buildlink3.mk" 72. include "../../textproc/gtkspell/buildlink3.mk"
73.elif !empty(PKG_OPTIONS:Mlibsexy) 73.elif !empty(PKG_OPTIONS:Mlibsexy)
74CONFIGURE_ARGS+= --enable-spell=libsexy 74CONFIGURE_ARGS+= --enable-spell=libsexy
75. include "../../devel/libsexy/buildlink3.mk" 75. include "../../devel/libsexy/buildlink3.mk"
 76.else
 77CONFIGURE_ARGS+= --enable-spell=none
76.endif 78.endif