* 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
This commit is contained in:
joey
2002-04-08 00:47:15 +00:00
parent f7e23d36bb
commit 65a3441113
4 changed files with 20 additions and 3 deletions

View File

@@ -31,3 +31,7 @@ bsd_games_cfg_gzip_manpages=n
# Policy says to use /usr/bin/pager by default. # Policy says to use /usr/bin/pager by default.
bsd_games_cfg_pager=/usr/bin/pager 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

8
debian/changelog vendored
View File

@@ -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 <joeyh@debian.org> Sun, 7 Apr 2002 20:27:57 -0400
bsdgames (2.13-6) unstable; urgency=low bsdgames (2.13-6) unstable; urgency=low
* Fixed man page warnings, Closes: #139414 * Fixed man page warnings, Closes: #139414

4
debian/control vendored
View File

@@ -1,9 +1,9 @@
Source: bsdgames Source: bsdgames
Section: games Section: games
Priority: optional Priority: optional
Build-Depends: debhelper (>= 3), libncurses5-dev, flex, bison, wenglish Build-Depends: debhelper (>= 3), libncurses5-dev, flex, bison, wenglish, wbritish
Maintainer: Joey Hess <joeyh@debian.org> Maintainer: Joey Hess <joeyh@debian.org>
Standards-Version: 3.5.6.0 Standards-Version: 3.5.6.1
Package: bsdgames Package: bsdgames
Architecture: any Architecture: any

7
debian/rules vendored
View File

@@ -10,6 +10,11 @@ export DH_COMPAT=3
build: build-stamp build: build-stamp
build-stamp: build-stamp:
dh_testdir dh_testdir
# Set up wordlist
cat /usr/share/dict/american-english /usr/share/dict/british-english | \
sort | uniq > temp-dictionary
./configure ./configure
$(MAKE) $(MAKE)
$(MAKE) test $(MAKE) test
@@ -19,7 +24,7 @@ clean:
dh_testdir dh_testdir
dh_testroot dh_testroot
rm -f build-stamp rm -f build-stamp
dh_clean dh_clean temp-dictionary
-$(MAKE) -i distclean -$(MAKE) -i distclean
# Build architecture-independent files here. # Build architecture-independent files here.