debian/0000755000000000000000000000000012167013222007162 5ustar debian/source/0000755000000000000000000000000012167013030010457 5ustar debian/source/format0000644000000000000000000000001412167013036011673 0ustar 3.0 (quilt) debian/copyright0000644000000000000000000000516212167011542011124 0ustar This package was debianized by Nelson A. de Oliveira on Mon, 16 Mar 2009 15:54:00 -0300. It was downloaded from http://pippin.gimp.org/plug-ins/gluas/files/ Upstream Author: Øyvind Kolås Copyright: Copyright © 2004 Øyvind Kolås License: 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 fur- nished 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, FIT- NESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CON- NECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. Except as contained in this notice, the name of the Author of the Software shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the Author. src/preview_layer.c, src/main.c, src/interface.c: This program 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 program 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, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. On Debian systems, the complete text of the GNU General Public License, version 2, can be found in `/usr/share/common-licenses/GPL-2'. The Debian packaging is: Copyright © 2009 Nelson A. de Oliveira and is licensed under the GPL version 2. The complete text of GPL version 2 can be found in `/usr/share/common-licenses/GPL-2'. debian/changelog0000644000000000000000000000067212167025651011052 0ustar gluas (0.1.20-1.1) unstable; urgency=low * Non-maintainer upload. * Patch to link in libm. (Closes: #713446). * Make package source format 3.0 (quilt). * Fix spelling error in package description. -- Barry deFreese Tue, 09 Jul 2013 09:56:02 -0400 gluas (0.1.20-1) unstable; urgency=low * Initial release (Closes: #470056). -- Nelson A. de Oliveira Mon, 16 Mar 2009 15:54:00 -0300 debian/compat0000644000000000000000000000000212167011542010363 0ustar 7 debian/watch0000644000000000000000000000011312167011542010211 0ustar version=3 http://pippin.gimp.org/plug-ins/gluas/files/ gluas-(.*)\.tar\.gz debian/rules0000755000000000000000000000015612167011542010247 0ustar #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk include /usr/share/cdbs/1/class/autotools.mk debian/control0000644000000000000000000000115012167025631010571 0ustar Source: gluas Section: graphics Priority: optional Maintainer: Nelson A. de Oliveira Build-Depends: cdbs, debhelper (>= 7), autotools-dev, pkg-config, libgimp2.0-dev, liblua5.1-0-dev Standards-Version: 3.8.1 Homepage: http://pippin.gimp.org/plug-ins/gluas/ Package: gimp-gluas Architecture: any Depends: gimp (>= 2.6), ${shlibs:Depends}, ${misc:Depends} Description: Lua environment plug-in for GIMP Gluas is a GIMP plug-in providing an environment for testing algorithms for image processing, using the Lua interpreter. The environment contains a simple editor for entering the algorithms. debian/patches/0000755000000000000000000000000012167013352010615 5ustar debian/patches/series0000644000000000000000000000002012167013074012023 0ustar link_libm.patch debian/patches/link_libm.patch0000644000000000000000000000162112167013352013576 0ustar Description: Link in libm for newer toolchains. Bug-Debian: http://bugs.debian.org/713446 Author: Barry deFreese Index: gluas-0.1.20/src/Makefile.am =================================================================== --- gluas-0.1.20.orig/src/Makefile.am 2005-02-23 10:01:11.000000000 -0500 +++ gluas-0.1.20/src/Makefile.am 2013-07-09 09:55:31.000000000 -0400 @@ -29,5 +29,5 @@ LDADD = $(GIMP_LIBS) \ $(LUA_LIBS) \ - $(GTKSOURCEVIEW_LIBS) + $(GTKSOURCEVIEW_LIBS) -lm Index: gluas-0.1.20/src/Makefile.in =================================================================== --- gluas-0.1.20.orig/src/Makefile.in 2008-12-11 09:30:45.000000000 -0500 +++ gluas-0.1.20/src/Makefile.in 2013-07-09 09:55:55.000000000 -0400 @@ -158,7 +158,7 @@ LDADD = $(GIMP_LIBS) \ $(LUA_LIBS) \ - $(GTKSOURCEVIEW_LIBS) + $(GTKSOURCEVIEW_LIBS) -lm subdir = src ACLOCAL_M4 = $(top_srcdir)/aclocal.m4