--- glktermw-1.0.4+git20200122.orig/debian/README.Debian +++ glktermw-1.0.4+git20200122/debian/README.Debian @@ -0,0 +1,13 @@ +glktermw for Debian +------------------ + +glk libraries are normally statically-linked into programs. Using programs +expect to find a .a file, some .h files, and a set of definitions for "make". + +Appropriate settings for compiling programs to use glktermw are: + +GLKINCLUDEDIR = /usr/include/glktermw +GLKLIBDIR = /usr/lib +GLKMAKEFILE = Make.glktermw + + -- John Goerzen Sat, 12 Oct 2019 15:32:22 -0500 --- glktermw-1.0.4+git20200122.orig/debian/changelog +++ glktermw-1.0.4+git20200122/debian/changelog @@ -0,0 +1,25 @@ +glktermw (1.0.4+git20200122-2) unstable; urgency=low + + * Remove comment from debian/copyright + + -- John Goerzen Fri, 31 Jan 2020 20:34:16 -0600 + +glktermw (1.0.4+git20200122-1) unstable; urgency=low + + * New upstream release. The author committed a fix to the license + to his git repository to make it DFSG-compatible. + + -- John Goerzen Fri, 31 Jan 2020 20:06:38 -0600 + +glktermw (1.0.4-2) unstable; urgency=low + + * Add additional .h files. glulxe requires them, even though + the documentation with glktermw doesn't imply they're needed. + + -- John Goerzen Sat, 12 Oct 2019 16:28:03 -0500 + +glktermw (1.0.4-1) unstable; urgency=low + + * Initial release (Closes: #942240) + + -- John Goerzen Sat, 12 Oct 2019 15:32:22 -0500 --- glktermw-1.0.4+git20200122.orig/debian/compat +++ glktermw-1.0.4+git20200122/debian/compat @@ -0,0 +1 @@ +11 --- glktermw-1.0.4+git20200122.orig/debian/control +++ glktermw-1.0.4+git20200122/debian/control @@ -0,0 +1,21 @@ +Source: glktermw +Priority: optional +Maintainer: John Goerzen +Build-Depends: debhelper (>= 11), libncurses-dev +Standards-Version: 4.1.3 +Section: libs +Homepage: https://www.eblong.com/zarf/glk/index.html +Vcs-Browser: https://github.com/jgoerzen/glktermw +Vcs-Git: https://github.com/jgoerzen/glktermw.git + +Package: libglktermw-dev +Section: libdevel +Architecture: any +Multi-Arch: no +Depends: ${misc:Depends} +Description: Curses-based interface library for interactive fiction + Glk is a device-independent interface specification intended primarily for + interactive fiction implementations. This library provides an ncurses-based + glk interface and includes Unicode support. It is used by packages such + as glulxe. + --- glktermw-1.0.4+git20200122.orig/debian/copyright +++ glktermw-1.0.4+git20200122/debian/copyright @@ -0,0 +1,48 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: glktermw +Source: + +Files: * +Copyright: 1998-2017 Andrew Plotkin + Alexander Beels +License: Expat + The MIT License + . + Copyright (c) 1998-2016, Andrew Plotkin + . + Permission is hereby granted, free of charge, to any person obtaining a copy + of this software and associated documentation files (the "Software"), to deal + in the Software without restriction, including without limitation the rights + to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + copies of the Software, and to permit persons to whom the Software is + furnished to do so, subject to the following conditions: + . + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + THE SOFTWARE. + +Files: debian/* +Copyright: 2019 John Goerzen +License: GPL-2+ + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this program. If not, see + . + On Debian systems, the complete text of the GNU General + Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". --- glktermw-1.0.4+git20200122.orig/debian/libglktermw-dev.dirs +++ glktermw-1.0.4+git20200122/debian/libglktermw-dev.dirs @@ -0,0 +1,2 @@ +usr/include/glktermw + --- glktermw-1.0.4+git20200122.orig/debian/libglktermw-dev.docs +++ glktermw-1.0.4+git20200122/debian/libglktermw-dev.docs @@ -0,0 +1,2 @@ +*.txt + --- glktermw-1.0.4+git20200122.orig/debian/libglktermw-dev.install +++ glktermw-1.0.4+git20200122/debian/libglktermw-dev.install @@ -0,0 +1,3 @@ +*.h /usr/include/glktermw/ +Make.glktermw /usr/include/glktermw/ +libglktermw.a /usr/lib/ --- glktermw-1.0.4+git20200122.orig/debian/rules +++ glktermw-1.0.4+git20200122/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f +# See debhelper(7) (uncomment to enable) +# output every command that modifies files on the build system. +#export DH_VERBOSE = 1 + + +# see FEATURE AREAS in dpkg-buildflags(1) +#export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# see ENVIRONMENT in dpkg-buildflags(1) +# package maintainers to append CFLAGS +#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# package maintainers to append LDFLAGS +#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed + + +%: + dh $@ + --- glktermw-1.0.4+git20200122.orig/debian/source/format +++ glktermw-1.0.4+git20200122/debian/source/format @@ -0,0 +1 @@ +1.0