Fri Feb 22 17:04:34 2008 UTC ()
+ Rename the "ncursesw" option to "wide-curses" and get rid of the
  "ncurses" option.  "wide-curses" now just toggles whether we use
  wide or narrow curses, which is a much simpler knob for users.

Bump the PKGREVISION to 2.


(jlam)
diff -r1.4 -r1.5 pkgsrc/textproc/hunspell/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/textproc/hunspell/options.mk

cvs diff -r1.4 -r1.5 pkgsrc/textproc/hunspell/Makefile (expand / switch to unified diff)

--- pkgsrc/textproc/hunspell/Makefile 2007/10/09 19:19:15 1.4
+++ pkgsrc/textproc/hunspell/Makefile 2008/02/22 17:04:34 1.5
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1# $NetBSD: Makefile,v 1.4 2007/10/09 19:19:15 martti Exp $ 1# $NetBSD: Makefile,v 1.5 2008/02/22 17:04:34 jlam Exp $
2# 2#
3 3
4DISTNAME= hunspell-1.1.12-2 4DISTNAME= hunspell-1.1.12-2
5PKGNAME= ${DISTNAME:C/-([0-9]+)$/.\1/} 5PKGNAME= ${DISTNAME:C/-([0-9]+)$/.\1/}
6PKGREVISION= 1 6PKGREVISION= 2
7CATEGORIES= textproc 7CATEGORIES= textproc
8MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hunspell/} 8MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hunspell/}
9 9
10MAINTAINER= adam.hoka@gmail.com 10MAINTAINER= adam.hoka@gmail.com
11HOMEPAGE= http://hunspell.sourceforge.net/ 11HOMEPAGE= http://hunspell.sourceforge.net/
12COMMENT= Improved spellchecker 12COMMENT= Improved spellchecker
13 13
14WRKSRC= ${WRKDIR}/${DISTNAME:C/-[0-9]+$//} 14WRKSRC= ${WRKDIR}/${DISTNAME:C/-[0-9]+$//}
15GNU_CONFIGURE= yes 15GNU_CONFIGURE= yes
16USE_LIBTOOL= yes 16USE_LIBTOOL= yes
17USE_TOOLS+= pkg-config 17USE_TOOLS+= pkg-config
18USE_PKGLOCALEDIR= yes 18USE_PKGLOCALEDIR= yes
19USE_LANGUAGES= c c++ 19USE_LANGUAGES= c c++

cvs diff -r1.1.1.1 -r1.2 pkgsrc/textproc/hunspell/Attic/options.mk (expand / switch to unified diff)

--- pkgsrc/textproc/hunspell/Attic/options.mk 2007/09/11 17:40:29 1.1.1.1
+++ pkgsrc/textproc/hunspell/Attic/options.mk 2008/02/22 17:04:34 1.2
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: options.mk,v 1.1.1.1 2007/09/11 17:40:29 wiz Exp $ 1# $NetBSD: options.mk,v 1.2 2008/02/22 17:04:34 jlam Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.hunspell 3PKG_OPTIONS_VAR= PKG_OPTIONS.hunspell
4PKG_OPTIONS_REQUIRED_GROUPS= display 4PKG_SUPPORTED_OPTIONS= wide-curses
5PKG_OPTIONS_GROUP.display= ncurses ncursesw 5PKG_SUGGESTED_OPTIONS= # empty
6PKG_SUGGESTED_OPTIONS= ncurses 6PKG_LEGACY_OPTS+= ncursesw:wide-curses
7 7
8.include "../../mk/bsd.options.mk" 8.include "../../mk/bsd.options.mk"
9 9
10.if !empty(PKG_OPTIONS:Mncurses) 10USE_NCURSES= yes
11USE_NCURSES= yes 
12. include "../../devel/ncurses/buildlink3.mk" 
13.endif 
14 11
15.if !empty(PKG_OPTIONS:Mncursesw) 12.if !empty(PKG_OPTIONS:Mwide-curses)
16. include "../../devel/ncursesw/buildlink3.mk" 13. include "../../devel/ncursesw/buildlink3.mk"
 14.else
 15. include "../../devel/ncurses/buildlink3.mk"
17.endif 16.endif