From 65a3441113a47f3fc3c1d021aa5b62495a89792d Mon Sep 17 00:00:00 2001 From: joey Date: Mon, 8 Apr 2002 00:47:15 +0000 Subject: [PATCH] * Make sure boggle is always built with the same wordlist, and use the union of wenglish and wbristish for that list. Building with web2 resulted in too many scrabble-words.. git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5187 a4a2c43b-8ac3-0310-8836-e0e880c912e2 --- config.params | 4 ++++ debian/changelog | 8 ++++++++ debian/control | 4 ++-- debian/rules | 7 ++++++- 4 files changed, 20 insertions(+), 3 deletions(-) diff --git a/config.params b/config.params index 02e1a3b..955a61e 100644 --- a/config.params +++ b/config.params @@ -31,3 +31,7 @@ bsd_games_cfg_gzip_manpages=n # Policy says to use /usr/bin/pager by default. bsd_games_cfg_pager=/usr/bin/pager + +# Always use the same wordlist for boggle, and don't use web2, it's too +# big. Instead, use the union of the wenglish and wbritish wordlists. +dictionary_src=`pwd`/temp-dictionary diff --git a/debian/changelog b/debian/changelog index 8da4209..e686c9e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +bsdgames (2.13-7) unstable; urgency=low + + * Make sure boggle is always built with the same wordlist, and use the union + of wenglish and wbristish for that list. Building with web2 resulted in + too many scrabble-words.. + + -- Joey Hess Sun, 7 Apr 2002 20:27:57 -0400 + bsdgames (2.13-6) unstable; urgency=low * Fixed man page warnings, Closes: #139414 diff --git a/debian/control b/debian/control index c50978b..5ed9e9e 100644 --- a/debian/control +++ b/debian/control @@ -1,9 +1,9 @@ Source: bsdgames Section: games Priority: optional -Build-Depends: debhelper (>= 3), libncurses5-dev, flex, bison, wenglish +Build-Depends: debhelper (>= 3), libncurses5-dev, flex, bison, wenglish, wbritish Maintainer: Joey Hess -Standards-Version: 3.5.6.0 +Standards-Version: 3.5.6.1 Package: bsdgames Architecture: any diff --git a/debian/rules b/debian/rules index f936447..ca23fe5 100755 --- a/debian/rules +++ b/debian/rules @@ -10,6 +10,11 @@ export DH_COMPAT=3 build: build-stamp build-stamp: dh_testdir + + # Set up wordlist + cat /usr/share/dict/american-english /usr/share/dict/british-english | \ + sort | uniq > temp-dictionary + ./configure $(MAKE) $(MAKE) test @@ -19,7 +24,7 @@ clean: dh_testdir dh_testroot rm -f build-stamp - dh_clean + dh_clean temp-dictionary -$(MAKE) -i distclean # Build architecture-independent files here.