mirror of
https://github.com/gentoo-mirror/gentoo-zh.git
synced 2025-04-10 11:58:43 -04:00
[Migrated](https://github.com/leycec/raiagent/tree/master/games-roguelike/tsl) from the repo that will be [archived soon](https://github.com/leycec/raiagent/issues/117). The official website was unavailable - so I found the code in another place https://archive.org/details/ArchiveRL.7z and put it into my repo. I have two warnings, what to do with them? > * QA Notice: Files built without respecting CFLAGS have been detected > * Please include the following list of files in your report: > * /usr/bin/tsl-tty > * QA Notice: Files built without respecting LDFLAGS have been detected > * Please include the following list of files in your report: > * /usr/bin/tsl-tty Tried to add to ::guru but they do not like that upstream is dead https://github.com/gentoo/guru/pull/301
68 lines
3.1 KiB
Plaintext
68 lines
3.1 KiB
Plaintext
This is The Slimy Lichmummy (TSL).␍
|
|
It can be retrieved from www.happyponyland.net.␍
|
|
Copyright Ulf Åström (ulf.astrom@gmail.com)␍
|
|
␍
|
|
TSL is not free software. For several reasons I have not placed it␍
|
|
under any conventional open source license. I might do so in the␍
|
|
future, but for now the following shall apply:␍
|
|
␍
|
|
The source code is provided so you can compile it on any architecture␍
|
|
and verify what runs inside your computer.␍
|
|
␍
|
|
You may distribute unmodified copies of the source package.␍
|
|
␍
|
|
I don't really mind unofficial patches or ports, but I prefer if you␍
|
|
contact me first.␍
|
|
␍
|
|
You are not allowed to sell TSL in any form (source code or binaries).␍
|
|
␍
|
|
TSL comes with no warranty. Use it at your own risk.␍
|
|
␍
|
|
Some parts of the program are licensed under other conditions:␍
|
|
␍
|
|
mt19937ar.c is distributed under a BSD license; see COPYING_MT.TXT for details.␍
|
|
␍
|
|
The font is a modified "Terminus". See OFL.TXT for details.␍
|
|
TSL contains a Mersenne-Twister implementation (mt19937ar.c).␍
|
|
␍
|
|
A C-program for MT19937, with initialization improved 2002/1/26.␍
|
|
Coded by Takuji Nishimura and Makoto Matsumoto.␍
|
|
␍
|
|
Before using, initialize the state by using init_genrand(seed) ␍
|
|
or init_by_array(init_key, key_length).␍
|
|
␍
|
|
Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,␍
|
|
All rights reserved. ␍
|
|
␍
|
|
Redistribution and use in source and binary forms, with or without␍
|
|
modification, are permitted provided that the following conditions␍
|
|
are met:␍
|
|
␍
|
|
1. Redistributions of source code must retain the above copyright␍
|
|
notice, this list of conditions and the following disclaimer.␍
|
|
␍
|
|
2. Redistributions in binary form must reproduce the above copyright␍
|
|
notice, this list of conditions and the following disclaimer in the␍
|
|
documentation and/or other materials provided with the distribution.␍
|
|
␍
|
|
3. The names of its contributors may not be used to endorse or promote ␍
|
|
products derived from this software without specific prior written ␍
|
|
permission.␍
|
|
␍
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS␍
|
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT␍
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR␍
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR␍
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,␍
|
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,␍
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR␍
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF␍
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING␍
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS␍
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.␍
|
|
␍
|
|
␍
|
|
Any feedback is very welcome.␍
|
|
http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html␍
|
|
email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
|